From 18d705a687e2571a44d4d029c032dd8cd24d99ce Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Wed, 8 Jan 2014 06:34:53 +0100 Subject: [PATCH] use always the same date format --- 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 cbe776a74..39e8cdb1e 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) {