From 3b4756653a0e5eecef154e2225d0979b5534f7aa Mon Sep 17 00:00:00 2001 From: skodak Date: Sun, 20 Apr 2008 19:38:33 +0000 Subject: [PATCH] MDL-14446 fixed inverted read flag in threaded view; merged from MOODLE_19_STABLE --- mod/forum/lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/forum/lib.php b/mod/forum/lib.php index 6c3036b31c..bf107fc2f7 100644 --- a/mod/forum/lib.php +++ b/mod/forum/lib.php @@ -4949,7 +4949,7 @@ function forum_print_posts_threaded($course, &$cm, $forum, $discussion, $parent, $by->date = userdate($post->modified); if ($forumtracked) { - if (empty($post->postread)) { + if (!empty($post->postread)) { $style = ''; } else { $style = ''; -- 2.39.5