Updates to German lang, changed date format

* Update README.md

* Update README.md

* Update lang.de.php

Changed "Error" to "Fehler"

* Update readme.md

- Added the German Readme URL

* Update README.md

* Update lang.de.php

- Changed the "takealook" 

Thanks to @Bluscream

* Update adminlist.php

Change the Date Format from xx-xx-xxxx to xx.xx.xxxx

* Update bans.php

Changed the Dateformat from xx-xx-xxxx to xx.xx.xxxx

* Update bans.php

Changed the Dateformat from xx-xx-xxxx to xx.xx.xxxx

* Update README.md
This commit is contained in:
Robin
2017-10-31 20:29:02 +01:00
committed by Wruczek
parent 24c321a26f
commit 8aa648dcb0
4 changed files with 6 additions and 5 deletions

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();