mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-28 01:30:27 +00:00
Fixes error when submode isn't present when displaying the table
This commit is contained in:
@@ -75,7 +75,12 @@ class eqsl extends CI_Controller {
|
||||
$table .= "<td>".$time_on."</td>";
|
||||
$table .= "<td>".str_replace("0","Ø",$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>";
|
||||
|
||||
Reference in New Issue
Block a user