reset _is_file_cache

This commit is contained in:
Uwe Tews
2015-01-04 23:54:11 +01:00
parent 7cc981e6a6
commit 2aaa29ad20

View File

@@ -953,7 +953,7 @@ class Smarty extends Smarty_Internal_TemplateBase
foreach ((array) $plugins_dir as $k => $v) { foreach ((array) $plugins_dir as $k => $v) {
$this->plugins_dir[$k] = rtrim($v, '/\\') . DS; $this->plugins_dir[$k] = rtrim($v, '/\\') . DS;
} }
$this->_is_file_cache = array();
return $this; return $this;
} }
@@ -985,7 +985,7 @@ class Smarty extends Smarty_Internal_TemplateBase
} }
$this->plugins_dir = array_unique($this->plugins_dir); $this->plugins_dir = array_unique($this->plugins_dir);
$this->_is_file_cache = array();
return $this; return $this;
} }