From 151e2c9452d40a0b0ada74105e1b4ef4b46790b0 Mon Sep 17 00:00:00 2001 From: Robin Date: Mon, 23 Oct 2017 20:40:08 +0200 Subject: [PATCH] Update bans.php Changed the Dateformat from xx-xx-xxxx to xx.xx.xxxx --- bans.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bans.php b/bans.php index 7d30a0e..c662096 100644 --- a/bans.php +++ b/bans.php @@ -7,7 +7,7 @@ require_once __DIR__ . "/include/cacheutils.class.php"; $cacheutils = new CacheUtils('banlist'); if($cacheutils->isExpired()) { - $cacheutils->setValue([getBanlist(), date('d-m-Y H:i:s')], 300); + $cacheutils->setValue([getBanlist(), date('d.m.Y H:i:s')], 300); } $banlist = $cacheutils->getValue();