From: moodler Date: Tue, 25 Jan 2005 14:32:43 +0000 (+0000) Subject: Removed some inline styles X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=039c0ec4443e399d32abe288f3e851053ae09824;p=moodle.git Removed some inline styles --- diff --git a/mod/forum/lib.php b/mod/forum/lib.php index 219a300768..fa32a006b9 100644 --- a/mod/forum/lib.php +++ b/mod/forum/lib.php @@ -2651,7 +2651,7 @@ function forum_print_posts_threaded($parent, $course, $depth, $ratings, $reply) if ($posts = forum_get_child_posts($parent)) { foreach ($posts as $post) { - echo '
'; + echo '
'; if ($depth > 0) { $ownpost = ($USER->id == $post->userid); if (forum_print_post($post, $course, $ownpost, $reply, $link, $ratings)) { @@ -2690,7 +2690,7 @@ function forum_print_posts_nested($parent, $course, $ratings, $reply) { $ownpost = ($USER->id == $post->userid); } - echo '
'; + echo '
'; if (forum_print_post($post, $course, $ownpost, $reply, $link, $ratings)) { $ratingsmenuused = true; }