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

这个提交包含在:
Peter Goodhall 2022-07-03 17:08:34 +01:00 提交者 GitHub
父节点 5e7c59a420
当前提交 bdb94a22f3
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23

查看文件

@ -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>";