Update adminlist.php

Change the Date Format from xx-xx-xxxx to xx.xx.xxxx
This commit is contained in:
Robin
2017-10-23 20:34:19 +02:00
committed by GitHub
parent d21b1e5495
commit 1afe58dc6d
+1 -1
View File
@@ -5,7 +5,7 @@ require_once __DIR__ . "/cacheutils.class.php";
$cacheutils = new CacheUtils('adminlist');
if($cacheutils->isExpired()) {
$cacheutils->setValue([getAdminList(), date('d-m-Y H:i:s')], 120);
$cacheutils->setValue([getAdminList(), date('d.m.Y H:i:s')], 120);
}
$adminlist = $cacheutils->getValue();