diff --git a/change_log.txt b/change_log.txt index 7999d400..fd963ebd 100644 --- a/change_log.txt +++ b/change_log.txt @@ -1,6 +1,8 @@ ===== Smarty 3.1 trunk ===== 22.09.2011 - bugfix {foreachelse} does fail if {section} was nested inside {foreach} +- bugfix debug.tpl did not display correctly when it was compiled with escape_html = true + 21.09.2011 - bugfix look for mixed case plugin file names as in 3.0 if not found try all lowercase diff --git a/libs/debug.tpl b/libs/debug.tpl index 5a780186..12eef0ff 100644 --- a/libs/debug.tpl +++ b/libs/debug.tpl @@ -86,7 +86,7 @@ td { -

Smarty Debug Console - {if isset($template_name)}{$template_name|debug_print_var}{else}Total Time {$execution_time|string_format:"%.5f"}{/if}

+

Smarty Debug Console - {if isset($template_name)}{$template_name|debug_print_var nofilter}{else}Total Time {$execution_time|string_format:"%.5f"}{/if}

{if !empty($template_data)}

included templates & config files (load time in seconds)

@@ -108,7 +108,7 @@ td { {foreach $assigned_vars as $vars} ${$vars@key|escape:'html'} - {$vars|debug_print_var} + {$vars|debug_print_var nofilter} {/foreach} @@ -118,7 +118,7 @@ td { {foreach $config_vars as $vars} {$vars@key|escape:'html'} - {$vars|debug_print_var} + {$vars|debug_print_var nofilter} {/foreach}