diff options
-rw-r--r-- | includes/pages/admin_log.php | 2 |
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; } |