- Extended status cache time from 10 to 60 seconds. Query should be less spammy now.
- Fixed "It is not safe to rely on the system's timezone settings" exception
- Removed lang property from html tag
This commit is contained in:
Wruczek
2017-03-30 00:57:06 +02:00
parent 3aa1852694
commit 23994df00c
7 changed files with 14 additions and 7 deletions

View File

@ -11,7 +11,7 @@ date_default_timezone_set($config["general"]["timezone"]);
$cacheutils = new CacheUtils('serverstatus');
if($cacheutils->isExpired()) {
$cacheutils->setValue(getResult(), 10);
$cacheutils->setValue(getResult(), 60);
}
die ($cacheutils->getValue());