- bugfix Debug Console could display incorrect data when using subtemplates

This commit is contained in:
uwetews
2015-12-13 14:15:54 +01:00
parent 7e521a92d9
commit e8078f55ae
3 changed files with 3 additions and 2 deletions

View File

@@ -2,6 +2,7 @@
13.12.2015
- bugfix {foreach} and {section} with uppercase characters in name attribute did not work (forum topic 25819)
- bugfix $smarty->debugging_ctrl = 'URL' did not work (forum topic 25811)
- bugfix Debug Console could display incorrect data when using subtemplates
09.12.2015
- bugix Smarty did fail under PHP 7.0.0 with use_include_path = true;

View File

@@ -118,7 +118,7 @@ class Smarty extends Smarty_Internal_TemplateBase
/**
* smarty version
*/
const SMARTY_VERSION = '3.1.28-dev/81';
const SMARTY_VERSION = '3.1.28-dev/82';
/**
* define variable scopes

View File

@@ -184,7 +184,7 @@ class Smarty_Internal_Template extends Smarty_Internal_TemplateBase
} else {
if ($this->smarty->debugging) {
$this->smarty->_debug->end_template($this);
if ($this->smarty->debugging == 2 and !$display) {
if ($this->smarty->debugging === 2 && $display === false) {
$this->smarty->_debug->display_debug($this, true);
}
}