]> git.mjollnir.org Git - moodle.git/commitdiff
More tiny modifications to forum post headers (they now can wrap)
authormoodler <moodler>
Sat, 27 Sep 2003 06:25:13 +0000 (06:25 +0000)
committermoodler <moodler>
Sat, 27 Sep 2003 06:25:13 +0000 (06:25 +0000)
mod/forum/lib.php

index 34f8860d1f4df3537d82cfbb6096a521f9db494d..7e8a3781de2db35ad6deeedf85feff226850de46 100644 (file)
@@ -1058,13 +1058,13 @@ function forum_print_post(&$post, $courseid, $ownpost=false, $reply=false, $link
     echo "</td>";
 
     if ($post->parent) {
-        echo "<td nowrap bgcolor=\"$THEME->cellheading\" class=\"forumpostheader\" width=\"100%\">";
+        echo "<td bgcolor=\"$THEME->cellheading\" class=\"forumpostheader\" width=\"100%\">";
     } else {
-        echo "<td nowrap bgcolor=\"$THEME->cellheading2\" class=\"forumpostheadertopic\" width=\"100%\">";
+        echo "<td bgcolor=\"$THEME->cellheading2\" class=\"forumpostheadertopic\" width=\"100%\">";
     }
     echo "<p>";
-    echo "<font size=3><b>$post->subject</b></font><br>";
-    echo "<font size=1>";
+    echo "<font size=3><b>$post->subject</b></font><br \>";
+    echo "<font size=2>";
     $by->name = "<a href=\"$CFG->wwwroot/user/view.php?id=$post->userid&course=$courseid\">$post->firstname $post->lastname</a>";
     $by->date = userdate($post->modified);
     print_string("bynameondate", "forum", $by);