#322 file cache 경로 문제 수정.

This commit is contained in:
bnu 2014-01-17 11:30:14 +09:00
parent 962163586f
commit 41b2afaa0f

View file

@ -49,7 +49,7 @@ class CacheFile extends CacheBase
*/ */
function getCacheFileName($key) function getCacheFileName($key)
{ {
return $this->cache_dir . str_replace(':', '/', $key) . '.php'; return $this->cache_dir . str_replace(':', DIRECTORY_SEPARATOR, $key) . '.php';
} }
/** /**