From d6d33db858603187408dfe2774412e657165c779 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Tue, 17 Dec 2013 11:18:45 +0100 Subject: [PATCH] use 'Y-m-d' for date formating --- inc/inc.Utils.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/inc.Utils.php b/inc/inc.Utils.php index 9dd41b107..6386c1173 100644 --- a/inc/inc.Utils.php +++ b/inc/inc.Utils.php @@ -27,11 +27,11 @@ function formatted_size($size_bytes) { /* {{{ */ } /* }}} */ function getReadableDate($timestamp) { - return date("d/m/Y", $timestamp); + return date("Y-m-d", $timestamp); } function getLongReadableDate($timestamp) { - return date("d/m/Y H:i", $timestamp); + return date("Y-m-d H:i:s", $timestamp); } function getReadableDuration($secs) {