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) {