mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-06 03:14:27 +02:00
- bugfix removed debug echo output while compiling template inheritance
This commit is contained in:
@@ -1,4 +1,7 @@
|
|||||||
===== Smarty 3.1 trunk =====
|
===== Smarty 3.1 trunk =====
|
||||||
|
20.09.2011
|
||||||
|
- bugfix removed debug echo output while compiling template inheritance
|
||||||
|
|
||||||
19.09.2011
|
19.09.2011
|
||||||
- bugfix regression in Smarty_CacheReource_KeyValueStore introduced by r4261
|
- bugfix regression in Smarty_CacheReource_KeyValueStore introduced by r4261
|
||||||
- bugfix output filter shall not run on included subtemplates
|
- bugfix output filter shall not run on included subtemplates
|
||||||
|
@@ -81,7 +81,6 @@ class Smarty_Internal_Compile_Extends extends Smarty_Internal_CompileBase {
|
|||||||
$_end = 0;
|
$_end = 0;
|
||||||
$_level = 1;
|
$_level = 1;
|
||||||
if (substr($_result[0][$_start][0],0,strlen($compiler->smarty->left_delimiter)+1) == $compiler->smarty->left_delimiter.'*') {
|
if (substr($_result[0][$_start][0],0,strlen($compiler->smarty->left_delimiter)+1) == $compiler->smarty->left_delimiter.'*') {
|
||||||
echo 'lll';
|
|
||||||
$_start++;
|
$_start++;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
@@ -108,7 +108,6 @@ class Smarty_Internal_Resource_Extends extends Smarty_Resource {
|
|||||||
$_end = 0;
|
$_end = 0;
|
||||||
$_level = 1;
|
$_level = 1;
|
||||||
if (substr($_result[0][$_start][0],0,strlen($source->smarty->left_delimiter)+1) == $source->smarty->left_delimiter.'*') {
|
if (substr($_result[0][$_start][0],0,strlen($source->smarty->left_delimiter)+1) == $source->smarty->left_delimiter.'*') {
|
||||||
echo 'lll';
|
|
||||||
$_start++;
|
$_start++;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user