fixed the bug in the diff view that shows wrong date and time

This commit is contained in:
hyung-hwan 2016-10-12 12:43:37 +00:00
parent 1a8b9ee893
commit 986afffd9f

View File

@ -242,7 +242,7 @@ $this->load->view (
print '<div class="metadata-commit-date">'; print '<div class="metadata-commit-date">';
printf ('[%s] ', $file['against']['created_rev']); printf ('[%s] ', $file['against']['created_rev']);
print strftime ('%Y-%m-%d %H:%M:%S %z', $file['time_t']); print strftime ('%Y-%m-%d %H:%M:%S %z', $file['against']['time_t']);
print '</div>' print '</div>'
?> ?>