Skip to content

Commit

Permalink
Update unix timestamp (#46)
Browse files Browse the repository at this point in the history
Update to the Unix Timestamp to display human-readable dates/times
  • Loading branch information
scarecr0w12 authored Mar 18, 2022
1 parent 63947b6 commit eaa2f0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/modules/admin/views/vote/vote_logs.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
<td><?= $vote->idaccount; ?></td>
<td><?= $vote->idvote; ?></td>
<td><?= $vote->points; ?></td>
<td><?= $vote->lasttime; ?></td>
<td><?= $vote->expired_at; ?></td>
<td><?= gmdate("m/d/Y H:i",$vote->lasttime); ?></td>
<td><?= gmdate("m/d/Y H:i",$vote->expired_at); ?></td>
</tr>
<?php endforeach; ?>
</tbody>
Expand Down

0 comments on commit eaa2f0c

Please sign in to comment.