clear_cache() check if cache dir is writable before opening it

This commit is contained in:
Fabrixxm 2013-10-21 14:03:01 -04:00
parent 6f5589fed3
commit 008eef17c0
1 changed files with 2 additions and 0 deletions

View File

@ -2156,6 +2156,7 @@ function clear_cache($basepath = "", $path = "") {
if ($cachetime == 0)
$cachetime = 86400;
if (is_writable($path)){
if ($dh = opendir($path)) {
while (($file = readdir($dh)) !== false) {
$fullpath = $path."/".$file;
@ -2166,6 +2167,7 @@ function clear_cache($basepath = "", $path = "") {
}
closedir($dh);
}
}
}
function set_template_engine(&$a, $engine = 'internal') {