fixed forgotten Detail-view with time

这个提交包含在:
Kim Huebel 2019-06-21 23:40:14 +02:00
父节点 0cc7b36796
当前提交 17d57e071c

查看文件

@ -10,7 +10,11 @@
<table width="100%"> <table width="100%">
<tr> <tr>
<td>Date/Time</td> <td>Date/Time</td>
<?php if(($this->config->item('use_auth') && ($this->session->userdata('user_type') >= 2)) || $this->config->item('use_auth') === FALSE) { ?>
<td><?php $timestamp = strtotime($row->COL_TIME_ON); echo date('d/m/y', $timestamp); $timestamp = strtotime($row->COL_TIME_ON); echo " at ".date('H:i', $timestamp); ?></td> <td><?php $timestamp = strtotime($row->COL_TIME_ON); echo date('d/m/y', $timestamp); $timestamp = strtotime($row->COL_TIME_ON); echo " at ".date('H:i', $timestamp); ?></td>
<?php } else { ?>
<td><?php $timestamp = strtotime($row->COL_TIME_ON); echo date('d/m/y', $timestamp); $timestamp = strtotime($row->COL_TIME_ON); echo " at **:**"; ?></td>
<?php } ?>
</tr> </tr>
<tr> <tr>