diff options
| author | uwe.tews@googlemail.com <uwe.tews@googlemail.com> | 2011-09-18 18:36:26 +0000 |
|---|---|---|
| committer | uwe.tews@googlemail.com <uwe.tews@googlemail.com> | 2011-09-18 18:36:26 +0000 |
| commit | 8e6626fbca3d04898ba289cd521988e972899fa1 (patch) | |
| tree | 2b145d7911de317f099eb376c572551c4249ab09 /libs/debug.tpl | |
| parent | c86131979e018e17756b0c964c327b9552000a2f (diff) | |
| download | smarty-8e6626fbca3d04898ba289cd521988e972899fa1.tar.gz smarty-8e6626fbca3d04898ba289cd521988e972899fa1.tar.bz2 smarty-8e6626fbca3d04898ba289cd521988e972899fa1.zip | |
- bugfix for Smarty2 style compiler plugins on unnamed attribute passing like {tag $foo $bar}
- 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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/debug.tpl b/libs/debug.tpl index 058c5b20..5a780186 100644 --- a/libs/debug.tpl +++ b/libs/debug.tpl @@ -128,6 +128,6 @@ td { <script type="text/javascript"> {$id = $template_name|default:''|md5} _smarty_console = window.open("","console{$id}","width=680,height=600,resizable,scrollbars=yes"); - _smarty_console.document.write("{$debug_output|escape:'javascript'}"); + _smarty_console.document.write("{$debug_output|escape:'javascript' nofilter}"); _smarty_console.document.close(); </script> |
