diff --git a/application/controllers/Eqsl.php b/application/controllers/Eqsl.php index 160b7175..6f00aa1a 100644 --- a/application/controllers/Eqsl.php +++ b/application/controllers/Eqsl.php @@ -36,6 +36,7 @@ class eqsl extends CI_Controller { $tableheaders .= "Date"; $tableheaders .= "Call"; $tableheaders .= "Mode"; + $tableheaders .= "Submode"; $tableheaders .= "Log Status"; $tableheaders .= "eQSL Status"; $tableheaders .= ""; @@ -74,6 +75,7 @@ class eqsl extends CI_Controller { $table .= "".$time_on.""; $table .= "".str_replace("0","Ø",$record['call']).""; $table .= "".$record['mode'].""; + $table .= "".$record['submode'].""; $table .= "QSO Record: ".$status.""; $table .= "eQSL Record: ".$eqsl_status.""; $table .= ""; @@ -293,6 +295,7 @@ class eqsl extends CI_Controller { $table .= "Date"; $table .= "Call"; $table .= "Mode"; + $table .= "Submode"; $table .= "Band"; $table .= "Result"; $table .= ""; @@ -377,6 +380,14 @@ class eqsl extends CI_Controller { $adif .= $qsl['COL_MODE']; $adif .= "%20"; + $adif .= "%3C"; + $adif .= "SUBMODE"; + $adif .= "%3A"; + $adif .= strlen($qsl['COL_SUBMODE']); + $adif .= "%3E"; + $adif .= $qsl['COL_SUBMODE']; + $adif .= "%20"; + $adif .= "%3C"; $adif .= "BAND"; $adif .= "%3A"; @@ -554,6 +565,7 @@ class eqsl extends CI_Controller { $table .= "".$qsl['COL_TIME_ON'].""; $table .= "".str_replace("0","Ø",$qsl['COL_CALL']).""; $table .= "".$qsl['COL_MODE'].""; + $table .= "".$qsl['COL_SUBMODE'].""; $table .= "".$qsl['COL_BAND'].""; $table .= "".$status.""; $table .= ""; @@ -575,6 +587,7 @@ class eqsl extends CI_Controller { $table .= "Date"; $table .= "Call"; $table .= "Mode"; + $table .= "Submode"; $table .= "Band"; $table .= "eQSL QTH Nickname"; $table .= ""; @@ -585,6 +598,7 @@ class eqsl extends CI_Controller { $table .= "".$qsl['COL_TIME_ON'].""; $table .= "" . str_replace("0","Ø",strtoupper($qsl['COL_CALL'])) . ""; $table .= "".$qsl['COL_MODE'].""; + $table .= "".$qsl['COL_SUBMODE'].""; $table .= "".$qsl['COL_BAND'].""; $table .= "".$qsl['eqslqthnickname'].""; $table .= "";