This commit is contained in:
logmanoriginal 2016-08-28 13:10:35 +02:00
commit 4959334f9f

View file

@ -88,6 +88,7 @@ class FileCache extends CacheAbstract{
$this->isPrepareCache();
$stringToEncode = $_SERVER['REQUEST_URI'] . http_build_query($this->param);
$stringToEncode = preg_replace('/(\?|&)format=[^&]*/i', '$1', $stringToEncode);
return hash('sha1', $stringToEncode) . '.cache';
}
}