diff --git a/change_log.txt b/change_log.txt index 7b72841f..fa60f14b 100644 --- a/change_log.txt +++ b/change_log.txt @@ -1,4 +1,7 @@ ===== Smarty 3.1 trunk ===== +20.09.2011 +- bugfix removed debug echo output while compiling template inheritance + 19.09.2011 - bugfix regression in Smarty_CacheReource_KeyValueStore introduced by r4261 - bugfix output filter shall not run on included subtemplates diff --git a/libs/sysplugins/smarty_internal_compile_extends.php b/libs/sysplugins/smarty_internal_compile_extends.php index 90974f38..5d3973e2 100644 --- a/libs/sysplugins/smarty_internal_compile_extends.php +++ b/libs/sysplugins/smarty_internal_compile_extends.php @@ -81,7 +81,6 @@ class Smarty_Internal_Compile_Extends extends Smarty_Internal_CompileBase { $_end = 0; $_level = 1; if (substr($_result[0][$_start][0],0,strlen($compiler->smarty->left_delimiter)+1) == $compiler->smarty->left_delimiter.'*') { - echo 'lll'; $_start++; continue; } diff --git a/libs/sysplugins/smarty_internal_resource_extends.php b/libs/sysplugins/smarty_internal_resource_extends.php index 23aee5dd..53ea3ebc 100644 --- a/libs/sysplugins/smarty_internal_resource_extends.php +++ b/libs/sysplugins/smarty_internal_resource_extends.php @@ -108,7 +108,6 @@ class Smarty_Internal_Resource_Extends extends Smarty_Resource { $_end = 0; $_level = 1; if (substr($_result[0][$_start][0],0,strlen($source->smarty->left_delimiter)+1) == $source->smarty->left_delimiter.'*') { - echo 'lll'; $_start++; continue; }