Fixed a few wrong fields

This commit is contained in:
Shoghi Cervantes
2014-02-08 01:25:03 +01:00
parent f6ecf51516
commit 1f5ff78f06
5 changed files with 14 additions and 14 deletions

View File

@@ -28,7 +28,7 @@ class Cache{
public static function get($identifier){
if(isset(self::$cached[$identifier])){
self::$cached[$identifier][1] += $minTTL;
self::$cached[$identifier][1] = microtime(true) + self::$cached[$identifier][2];
return self::$cached[$identifier][0];
}
return false;