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