Переглянути джерело

fs cache backend: silence the error

pull/18/head
czaks 9 роки тому
джерело
коміт
11dfc8bbdc
1 змінених файлів з 1 додано та 1 видалено
  1. +1
    -1
      inc/cache.php

+ 1
- 1
inc/cache.php Переглянути файл

@@ -132,7 +132,7 @@ class Cache {
case 'fs':
$key = str_replace('/', '::', $key);
$key = str_replace("\0", '', $key);
unlink('tmp/cache/'.$key);
@unlink('tmp/cache/'.$key);
break;
case 'php':
unset(self::$cache[$key]);


Завантаження…
Відмінити
Зберегти