]> git.mjollnir.org Git - moodle.git/commitdiff
The BR in print_post was to fix the case when embedded images are used.
authormoodler <moodler>
Thu, 24 Oct 2002 07:09:29 +0000 (07:09 +0000)
committermoodler <moodler>
Thu, 24 Oct 2002 07:09:29 +0000 (07:09 +0000)
However it added too much space.  I'll find a way to fix the embedded
images problem later, during the styles changeover, as it's pretty
rare.

mod/forum/lib.php

index cda277c48c689ef5fc8340e924f57310db11af24..531b7646cab38d4070d5013b3dc5ff59187e54d3 100644 (file)
@@ -581,7 +581,7 @@ function forum_print_post(&$post, $courseid, $ownpost=false, $reply=false, $link
         echo format_text($post->message, $post->format);
     }
 
-    echo "<BR CLEAR=ALL><P ALIGN=right><FONT SIZE=-1>";
+    echo "<P ALIGN=right><FONT SIZE=-1>";
 
     $age = time() - $post->created;
     if ($ownpost) {