diff options
| author | Uwe Tews <uwe.tews@googlemail.com> | 2015-05-18 05:39:57 +0200 |
|---|---|---|
| committer | Uwe Tews <uwe.tews@googlemail.com> | 2015-05-18 05:39:57 +0200 |
| commit | dcf53ca957f2e25cd7f4ea4b14b1346a8ac28b42 (patch) | |
| tree | 1c9de1826db75126b9066b7994f0e76e597e719b /libs/debug.tpl | |
| parent | ed740b967a8b5712d96614a74894a5bde7afc17a (diff) | |
| download | smarty-dcf53ca957f2e25cd7f4ea4b14b1346a8ac28b42.tar.gz smarty-dcf53ca957f2e25cd7f4ea4b14b1346a8ac28b42.tar.bz2 smarty-dcf53ca957f2e25cd7f4ea4b14b1346a8ac28b42.zip | |
Fix max nesting parameter
Diffstat (limited to 'libs/debug.tpl')
| -rw-r--r-- | libs/debug.tpl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/debug.tpl b/libs/debug.tpl index 0fafb22f..5b09c5bd 100644 --- a/libs/debug.tpl +++ b/libs/debug.tpl @@ -128,9 +128,9 @@ <tr class="{if $vars@iteration % 2 eq 0}odd{else}even{/if}"> <td><h3><font color=blue>${$vars@key}</font></h3> {if isset($vars['nocache'])}<b>Nocache</b></br>{/if} - {if isset($vars['scope'])}<b>Origin:</b> {$vars['scope']|debug_print_var:null:80 nofilter}{/if} + {if isset($vars['scope'])}<b>Origin:</b> {$vars['scope']|debug_print_var:10:80 nofilter}{/if} </td> - <td><h3>Value</h3>{$vars['value']|debug_print_var:null:80 nofilter}</td> + <td><h3>Value</h3>{$vars['value']|debug_print_var:10:80 nofilter}</td> <td>{if isset($vars['attributes'])}<h3>Attributes</h3>{$vars['attributes']|debug_print_var nofilter} {/if}</td> {/foreach} </table> @@ -141,9 +141,9 @@ {foreach $config_vars as $vars} <tr class="{if $vars@iteration % 2 eq 0}odd{else}even{/if}"> <td><h3><font color=blue>#{$vars@key}#</font></h3> - {if isset($vars['scope'])}<b>Origin:</b> {$vars['scope']|debug_print_var:null:80 nofilter}{/if} + {if isset($vars['scope'])}<b>Origin:</b> {$vars['scope']|debug_print_var:10:80 nofilter}{/if} </td> - <td>{$vars['value']|debug_print_var:null:80 nofilter}</td> + <td>{$vars['value']|debug_print_var:10:80 nofilter}</td> </tr> {/foreach} |
