Cleaned up some time display items

这个提交包含在:
Peter Goodhall 2019-10-06 16:50:33 +01:00
父节点 48bb5948b5
当前提交 1f53fceb26
共有 2 个文件被更改,包括 2 次插入2 次删除

查看文件

@ -319,7 +319,7 @@ class Logbook extends CI_Controller {
foreach ($query->result() as $row)
{
$html .= "<tr>";
$html .= "<td>".$row->COL_TIME_ON."</td>";
$html .= "<td>".date('d/m/y H:i',strtotime($row->COL_TIME_ON))."</td>";
$html .= "<td>".str_replace("0","&Oslash;",strtoupper($row->COL_CALL))."</td>";
$html .= "<td>".$row->COL_RST_SENT."</td>";
$html .= "<td>".$row->COL_RST_RCVD."</td>";

查看文件

@ -340,7 +340,7 @@
<?php $i = 0;
foreach ($query->result() as $row) { ?>
<?php echo '<tr class="tr'.($i & 1).'">'; ?>
<td><?php echo $row->COL_TIME_ON; ?></td>
<td><?php echo date('d/m/y H:i',strtotime($row->COL_TIME_ON)); ?></td>
<td><a class="qsobox" data-fancybox data-type="iframe" data-src="<?php echo site_url('logbook/view')."/".$row->COL_PRIMARY_KEY; ?>" href="javascript:;"><?php echo str_replace("0","&Oslash;",strtoupper($row->COL_CALL)); ?></a></td>
<td><?php echo $row->COL_MODE; ?></td>
<td><?php echo $row->COL_RST_SENT; ?></td>