From 039c0ec4443e399d32abe288f3e851053ae09824 Mon Sep 17 00:00:00 2001 From: moodler Date: Tue, 25 Jan 2005 14:32:43 +0000 Subject: [PATCH] Removed some inline styles --- mod/forum/lib.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.39.5