]> code.citadel.org Git - citadel.git/commitdiff
Add an extra <br> at the end when pullquoting a message.
authorArt Cancro <ajc@citadel.org>
Wed, 15 Feb 2006 04:30:39 +0000 (04:30 +0000)
committerArt Cancro <ajc@citadel.org>
Wed, 15 Feb 2006 04:30:39 +0000 (04:30 +0000)
This gives TinyMCE somewhere to put the cursor that's not inside the quote.

webcit/messages.c

index 3d3517d14834a9c768943a72c6c1ade34b7c5a30..69521ea597e0394947c8d399cafeb335d12a54ac 100644 (file)
@@ -2914,7 +2914,7 @@ void display_enter(void)
                wprintf("<br>"
                        "<blockquote>");
                pullquote_message(atol(bstr("replyquote")), 0, 1);
-               wprintf("</blockquote>\n\n");
+               wprintf("</blockquote><br>");
        }
 
        /** If we're editing a wiki page, insert the existing page here... */