fixed the wrong time formatting in the issue view

This commit is contained in:
hyung-hwan 2014-05-07 13:51:47 +00:00
parent a55912aa6d
commit d5476af19f

View File

@ -256,7 +256,7 @@ $this->load->view (
print '<tr>'; print '<tr>';
print '<td class="date">'; print '<td class="date">';
print date ('Y-m-d H:s:i', strtotime($new->updatedon)); print date ('Y-m-d H:i:s', strtotime($new->updatedon));
print '</td>'; print '</td>';
print '<td class="updater">'; print '<td class="updater">';
@ -336,7 +336,7 @@ $this->load->view (
print '<tr>'; print '<tr>';
print '<td class="date">'; print '<td class="date">';
print date ('Y-m-d H:s:i', strtotime($issue->createdon)); print date ('Y-m-d H:i:s', strtotime($issue->createdon));
print '</td>'; print '</td>';
print '<td class="updater">'; print '<td class="updater">';