diff options
| author | uwe.tews@googlemail.com <uwe.tews@googlemail.com> | 2011-09-22 19:13:15 +0000 |
|---|---|---|
| committer | uwe.tews@googlemail.com <uwe.tews@googlemail.com> | 2011-09-22 19:13:15 +0000 |
| commit | 00a4769aa5807542d2dd811cfd269a75d47f32e6 (patch) | |
| tree | e8626c55437616337bc588e2ec25807a7924be5b /libs/debug.tpl | |
| parent | 6e22abb6dde8ef2b0cf7462f17c16d983c963ac0 (diff) | |
| download | smarty-00a4769aa5807542d2dd811cfd269a75d47f32e6.tar.gz smarty-00a4769aa5807542d2dd811cfd269a75d47f32e6.tar.bz2 smarty-00a4769aa5807542d2dd811cfd269a75d47f32e6.zip | |
- bugfix debug.tpl did not display correctly when it was compiled with escape_html = true
Diffstat (limited to 'libs/debug.tpl')
| -rw-r--r-- | libs/debug.tpl | 6 |
1 files changed, 3 insertions, 3 deletions
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 { </head> <body> -<h1>Smarty Debug Console - {if isset($template_name)}{$template_name|debug_print_var}{else}Total Time {$execution_time|string_format:"%.5f"}{/if}</h1> +<h1>Smarty Debug Console - {if isset($template_name)}{$template_name|debug_print_var nofilter}{else}Total Time {$execution_time|string_format:"%.5f"}{/if}</h1> {if !empty($template_data)} <h2>included templates & config files (load time in seconds)</h2> @@ -108,7 +108,7 @@ td { {foreach $assigned_vars as $vars} <tr class="{if $vars@iteration % 2 eq 0}odd{else}even{/if}"> <th>${$vars@key|escape:'html'}</th> - <td>{$vars|debug_print_var}</td></tr> + <td>{$vars|debug_print_var nofilter}</td></tr> {/foreach} </table> @@ -118,7 +118,7 @@ td { {foreach $config_vars as $vars} <tr class="{if $vars@iteration % 2 eq 0}odd{else}even{/if}"> <th>{$vars@key|escape:'html'}</th> - <td>{$vars|debug_print_var}</td></tr> + <td>{$vars|debug_print_var nofilter}</td></tr> {/foreach} </table> |
