diff options
| author | spiderr <spider@viovio.com> | 2013-04-12 15:40:14 -0400 |
|---|---|---|
| committer | spiderr <spider@viovio.com> | 2013-04-12 15:40:14 -0400 |
| commit | 0ed6b47326e97871e5cf02a8a0ff1c3cc9be70fb (patch) | |
| tree | cd6ceeb0819f044592ca0aa85dbe09e4c0ae9dc6 /templates/display_comment.tpl | |
| parent | 0afd5235fcf0c67d49d4d44941e2c5806006b6b6 (diff) | |
| download | liberty-0ed6b47326e97871e5cf02a8a0ff1c3cc9be70fb.tar.gz liberty-0ed6b47326e97871e5cf02a8a0ff1c3cc9be70fb.tar.bz2 liberty-0ed6b47326e97871e5cf02a8a0ff1c3cc9be70fb.zip | |
fix comment display crashing - passed variable was quoted
Diffstat (limited to 'templates/display_comment.tpl')
| -rw-r--r-- | templates/display_comment.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/display_comment.tpl b/templates/display_comment.tpl index 71317a4..013ddba 100644 --- a/templates/display_comment.tpl +++ b/templates/display_comment.tpl @@ -39,7 +39,7 @@ {if $comment.children} <div id="comment_{$comment.content_id}_children"> {foreach key=key item=item from=$comment.children} - {include file="bitpackage:liberty/display_comment.tpl" comment="$item"} + {include file="bitpackage:liberty/display_comment.tpl" comment=$item} {/foreach} </div> {/if} |
