- fixed some problems with "build system" index, #666

This commit is contained in:
Mark Friedrich
2018-09-02 01:18:09 +02:00
parent a86958abd6
commit 8da07199f4
2 changed files with 4 additions and 7 deletions

View File

@@ -905,7 +905,8 @@ abstract class BasicModel extends \DB\Cortex {
* @return bool
*/
public static function existsCacheValue(string $key, &$val = null){
return self::getF3()->exists($key, $val);
$cache = \Cache::instance();
return $cache->exists(self::getF3()->hash($key).'.var',$val);
}
/**