Skip to content
Snippets Groups Projects
Commit a0844522 authored by Robin Appelman's avatar Robin Appelman
Browse files

make use of new dateformat function

parent a16c6fb8
No related branches found
No related tags found
No related merge requests found
......@@ -41,7 +41,7 @@ $dir = isset( $_GET['dir'] ) ? $_GET['dir'] : '';
$files = array();
foreach( OC_FILES::getdirectorycontent( $dir ) as $i ){
$i["date"] = date( $CONFIG_DATEFORMAT, $i["mtime"] );
$i["date"] = OC_UTIL::formatDate($i["mtime"] );
$files[] = $i;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment