fs cache backend: silence the error
This commit is contained in:
parent
094f60d34d
commit
11dfc8bbdc
@ -132,7 +132,7 @@ class Cache {
|
|||||||
case 'fs':
|
case 'fs':
|
||||||
$key = str_replace('/', '::', $key);
|
$key = str_replace('/', '::', $key);
|
||||||
$key = str_replace("\0", '', $key);
|
$key = str_replace("\0", '', $key);
|
||||||
unlink('tmp/cache/'.$key);
|
@unlink('tmp/cache/'.$key);
|
||||||
break;
|
break;
|
||||||
case 'php':
|
case 'php':
|
||||||
unset(self::$cache[$key]);
|
unset(self::$cache[$key]);
|
||||||
|
Loading…
Reference in New Issue
Block a user