summaryrefslogtreecommitdiff
path: root/includes/pages/admin_log.php
diff options
context:
space:
mode:
authorPhilip Häusler <msquare@notrademark.de>2014-12-15 19:08:40 +0100
committerPhilip Häusler <msquare@notrademark.de>2014-12-15 19:08:40 +0100
commit388dd0e1369755875a8eeb2259291f57d0a92990 (patch)
tree57b0fb8322dc0dbcbc0d842c25f21b0cf7fe0f2c /includes/pages/admin_log.php
parent9125f7e5ab964accd7d4a9e54ec7329c34406e5f (diff)
display date
Diffstat (limited to 'includes/pages/admin_log.php')
-rw-r--r--includes/pages/admin_log.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/pages/admin_log.php b/includes/pages/admin_log.php
index b60a9fca..6a687e17 100644
--- a/includes/pages/admin_log.php
+++ b/includes/pages/admin_log.php
@@ -7,7 +7,7 @@ function admin_log() {
$log_entries_source = LogEntries();
$log_entries = array();
foreach ($log_entries_source as $log_entry) {
- $log_entry['date'] = date("H:i", $log_entry['timestamp']);
+ $log_entry['date'] = date("d.m.Y H:i", $log_entry['timestamp']);
$log_entries[] = $log_entry;
}