Fixes error when submode isn't present when displaying the table

pull/1527/head
Peter Goodhall 2022-07-03 17:08:34 +01:00 zatwierdzone przez GitHub
rodzic 5e7c59a420
commit bdb94a22f3
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 6 dodań i 1 usunięć

Wyświetl plik

@ -75,7 +75,12 @@ class eqsl extends CI_Controller {
$table .= "<td>".$time_on."</td>";
$table .= "<td>".str_replace("0","&Oslash;",$record['call'])."</td>";
$table .= "<td>".$record['mode']."</td>";
$table .= "<td>".$record['submode']."</td>";
if (isset($record['submode'])
{
$table .= "<td>".$record['submode']."</td>";
} else {
$table .= "<td></td>";
}
$table .= "<td>QSO Record: ".$status."</td>";
$table .= "<td>eQSL Record: ".$eqsl_status."</td>";
$table .= "<tr>";