From e23800b7b53672cdfd822d1b8f4f999d6588d811 Mon Sep 17 00:00:00 2001 From: moodler Date: Wed, 15 Mar 2006 09:50:42 +0000 Subject: [PATCH] Fixed classes for styles in forum overview in My Moodle --- mod/forum/lib.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/mod/forum/lib.php b/mod/forum/lib.php index 5b438fc162..bfb627402c 100644 --- a/mod/forum/lib.php +++ b/mod/forum/lib.php @@ -815,12 +815,14 @@ function forum_print_overview($courses,&$htmlarray) { $showunread = true; } if ($count > 0 || $thisunread > 0) { - $str .= '' - .$strforum.': '.$forum->name.'
'; - $str .= $count.' '.$strnumpostssince."
"; + $str .= '
'.$strforum.': '. + $forum->name.'
'; + $str .= '
'; + $str .= $count.' '.$strnumpostssince; if (!empty($showunread)) { - $str .= $thisunread .' '.$strnumunread.'
'; + $str .= '
'.$thisunread .' '.$strnumunread; } + $str .= '
'; } if (!empty($str)) { if (!array_key_exists($forum->course,$htmlarray)) { -- 2.39.5