diff options
author | z0rglub <z0rglub@piwigo.org> | 2003-09-21 18:27:13 +0000 |
---|---|---|
committer | z0rglub <z0rglub@piwigo.org> | 2003-09-21 18:27:13 +0000 |
commit | e6abf333fe7f9b4cd17871d5d2078de04b63e682 (patch) | |
tree | e5fc336c71d494151f25fb53e0f953fa5a5e60a2 | |
parent | 592872878bc2da70367b2f79c8a1b86a7505c594 (diff) |
Add seconds for display
git-svn-id: http://piwigo.org/svn/trunk@157 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/stats.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/stats.php b/admin/stats.php index 0de4579e2..26dee15f1 100644 --- a/admin/stats.php +++ b/admin/stats.php @@ -136,7 +136,7 @@ for ( $i = 0; $i <= MAX_DAYS; $i++ ) while ( $row = mysql_fetch_array( $result ) ) { $vtp->addSession( $sub, 'line' ); - $vtp->setVar( $sub, 'line.date', date( 'G:i', $row['date'] ) ); + $vtp->setVar( $sub, 'line.date', date( 'G:i:s', $row['date'] ) ); $vtp->setVar( $sub, 'line.login', $row['login'] ); $vtp->setVar( $sub, 'line.IP', $row['IP'] ); $vtp->setVar( $sub, 'line.category', $row['category'] ); |