Showing
1 changed file
with
1 additions
and
1 deletions
@@ -30,7 +30,7 @@ class FileCache extends Root implements CacheInterface | @@ -30,7 +30,7 @@ class FileCache extends Root implements CacheInterface | ||
30 | $this->node = ($node == null ? 'cache' : $node); | 30 | $this->node = ($node == null ? 'cache' : $node); |
31 | $_pathList = $cachePath = $server->getServerConfig($this->section, $this->node); | 31 | $_pathList = $cachePath = $server->getServerConfig($this->section, $this->node); |
32 | if ($childNode == null && is_array($cachePath)) { | 32 | if ($childNode == null && is_array($cachePath)) { |
33 | - $cachePath = (sys_get_temp_dir() . 'cached' . DIRECTORY_SEPARATOR); | 33 | + $cachePath = (sys_get_temp_dir() . DIRECTORY_SEPARATOR. 'cached' . DIRECTORY_SEPARATOR); |
34 | } else { | 34 | } else { |
35 | $cachePath = $_pathList[$childNode]; | 35 | $cachePath = $_pathList[$childNode]; |
36 | } | 36 | } |
-
Please register or login to post a comment