- remove access to removed an not needed property

This commit is contained in:
uwetews
2016-03-09 02:44:38 +01:00
parent 91b4992ab8
commit f63ceb1c05
2 changed files with 0 additions and 3 deletions

View File

@@ -49,8 +49,6 @@ class Smarty_Internal_Method_ClearCompiledTemplate
$tpl = new $smarty->template_class($resource_name, $smarty); $tpl = new $smarty->template_class($resource_name, $smarty);
$smarty->caching = $_save_stat; $smarty->caching = $_save_stat;
if ($tpl->source->exists) { if ($tpl->source->exists) {
// remove from compileds cache
$tpl->source->compileds = array();
$_resource_part_1 = basename(str_replace('^', DS, $tpl->compiled->filepath)); $_resource_part_1 = basename(str_replace('^', DS, $tpl->compiled->filepath));
$_resource_part_1_length = strlen($_resource_part_1); $_resource_part_1_length = strlen($_resource_part_1);
} else { } else {

View File

@@ -201,7 +201,6 @@ class Smarty_Template_Compiled extends Smarty_Template_Resource_Base
*/ */
public function compileTemplateSource(Smarty_Internal_Template $_template) public function compileTemplateSource(Smarty_Internal_Template $_template)
{ {
$_template->source->compileds = array();
$this->file_dependency = array(); $this->file_dependency = array();
$this->includes = array(); $this->includes = array();
$this->nocache_hash = null; $this->nocache_hash = null;