Explorar el Código

fs cache backend: silence the error

pull/18/head
czaks hace 9 años
padre
commit
11dfc8bbdc
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      inc/cache.php

+ 1
- 1
inc/cache.php Ver fichero

@@ -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]);


Cargando…
Cancelar
Guardar