From da2c0571f9aefd101f983b4bbc410bcec16fc938 Mon Sep 17 00:00:00 2001 From: inga-lovinde <52715130+inga-lovinde@users.noreply.github.com> Date: Wed, 7 Jul 2010 06:13:36 +0000 Subject: [PATCH] Slight changes in 'quote' design --- Common/BBCodes/Quote.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common/BBCodes/Quote.cs b/Common/BBCodes/Quote.cs index 24fdf0a..ced7d04 100644 --- a/Common/BBCodes/Quote.cs +++ b/Common/BBCodes/Quote.cs @@ -14,7 +14,7 @@ namespace FLocal.Common.BBCodes { public override string Format(ITextFormatter formatter) { string marker = this.Default; if(marker == null) marker = "Quote:"; - return "
" + marker + "

" + this.GetInnerHTML(formatter).Trim() + "



"; + return "
" + marker + "
" + this.GetInnerHTML(formatter).Trim() + "


"; } }