From 75d10a02dbf83e6227f01d9d29e09f90b018e6e7 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 6 Aug 2002 06:17:59 +0000 Subject: [PATCH] Whoops ... make sure rated posts still show ratings! :-) --- mod/forum/lib.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mod/forum/lib.php b/mod/forum/lib.php index bb52159574..32802a22f8 100644 --- a/mod/forum/lib.php +++ b/mod/forum/lib.php @@ -916,16 +916,16 @@ function forum_print_discussion($course, $forum, $discussion, $post, $mode) { case -1 : // Flat descending default: echo ""; break; case 2 : // Threaded - forum_print_posts_threaded($post->id, $course->id, 0, $ratingform); + forum_print_posts_threaded($post->id, $course->id, 0, $forum->assessed); break; case 3 : // Nested - forum_print_posts_nested($post->id, $course->id, $ratingform); + forum_print_posts_nested($post->id, $course->id, $forum->assessed); break; } -- 2.39.5