From f7a5daa8a0cbf7f9747aec108d76867ea5d05091 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Tue, 30 Apr 2013 08:36:02 +0200 Subject: [PATCH] use same date format in getReadableDate() and getLongReadableDate() --- inc/inc.Utils.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/inc.Utils.php b/inc/inc.Utils.php index 56151ac56..9dd41b107 100644 --- a/inc/inc.Utils.php +++ b/inc/inc.Utils.php @@ -27,7 +27,7 @@ function formatted_size($size_bytes) { /* {{{ */ } /* }}} */ function getReadableDate($timestamp) { - return date("d.m.Y", $timestamp); + return date("d/m/Y", $timestamp); } function getLongReadableDate($timestamp) {