修复文件缓存删除方法BUG

This commit is contained in:
诸葛晓明 2017-06-03 17:46:39 +08:00
parent 4ef56bada9
commit a90691e871
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ class memory_driver_file {
}
public function rm($key) {
return @unlink(DISCUZ_ROOT.$this->path.$this->cachefile($key));
return @unlink(DISCUZ_ROOT.$this->path.$this->cachefile($key).'.php');
}
private function dir_clear($dir) {