From 396c22b60ad7eccd3b8798d8d701fa8cbebdea55 Mon Sep 17 00:00:00 2001 From: garvinhicking Date: Mon, 26 Feb 2007 07:52:01 +0000 Subject: [PATCH] Fix CSS class spacing, thanks to Own Stubbs --- templates/default/comments.tpl | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/templates/default/comments.tpl b/templates/default/comments.tpl index 47a7359..facd356 100644 --- a/templates/default/comments.tpl +++ b/templates/default/comments.tpl @@ -1,7 +1,13 @@ {foreach from=$comments item=comment name="comments"} -
-
{$comment.body}
+
+
+ {if $comment.body == 'COMMENT_DELETED'} + {$CONST.COMMENT_IS_DELETED} + {else} + {$comment.body} + {/if} +
#{$comment.trace} @@ -20,7 +26,7 @@ {if $entry.is_entry_owner} ({$CONST.DELETE}) {/if} - {if $entry.allow_comments} + {if $entry.allow_comments AND $comment.body != 'COMMENT_DELETED'} ({$CONST.REPLY})
{/if} -- 2.39.5