use same date format in getReadableDate() and getLongReadableDate()

This commit is contained in:
Uwe Steinmann 2013-04-30 08:36:02 +02:00
parent 025e88d5af
commit f7a5daa8a0

View File

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