From 1afe58dc6d92d568ae821c5f3d635b2e99822990 Mon Sep 17 00:00:00 2001 From: Robin Date: Mon, 23 Oct 2017 20:34:19 +0200 Subject: [PATCH] Update adminlist.php Change the Date Format from xx-xx-xxxx to xx.xx.xxxx --- include/adminlist.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/adminlist.php b/include/adminlist.php index 3c7d882..25baf31 100644 --- a/include/adminlist.php +++ b/include/adminlist.php @@ -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();