- bugfix $smarty->debugging = true; did show the variable of the $smarty object not the variables used in display() call (forum topic 24764)

This commit is contained in:
Uwe.Tews@googlemail.com
2014-01-27 16:08:55 +00:00
parent 0e03ba5b61
commit 79dfde4977
2 changed files with 4 additions and 1 deletions

View File

@@ -1,4 +1,7 @@
===== trunk ===== ===== trunk =====
27.01.2014
- bugfix $smarty->debugging = true; did show the variable of the $smarty object not the variables used in display() call (forum topic 24764)
26.01.2014 26.01.2014
- bugfix undo block nesting checks for {nocache} for reasons like forum topic 23280 (forum topic 24762) - bugfix undo block nesting checks for {nocache} for reasons like forum topic 23280 (forum topic 24762)

View File

@@ -343,7 +343,7 @@ abstract class Smarty_Internal_TemplateBase extends Smarty_Internal_Data
} }
// debug output // debug output
if ($this->smarty->debugging) { if ($this->smarty->debugging) {
Smarty_Internal_Debug::display_debug($this); Smarty_Internal_Debug::display_debug($_template);
} }
if ($merge_tpl_vars) { if ($merge_tpl_vars) {
// restore local variables // restore local variables