From 9a8f8cea494b84a5666bc061efbd0df903df9fcd Mon Sep 17 00:00:00 2001 From: Dan Marsden Date: Thu, 24 Mar 2011 14:41:30 +1300 Subject: [PATCH] Forum Overview MDL-26957 add classes to allow better control by theme --- 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 2417a6ff137..a2ef362c1af 100644 --- a/mod/forum/lib.php +++ b/mod/forum/lib.php @@ -1291,10 +1291,10 @@ function forum_print_overview($courses,&$htmlarray) { if ($count > 0 || $thisunread > 0) { $str .= '
'.$strforum.': '. $forum->name.'
'; - $str .= '
'; - $str .= $count.' '.$strnumpostssince; + $str .= '
'; + $str .= $count.' '.$strnumpostssince.""; if (!empty($showunread)) { - $str .= '
'.$thisunread .' '.$strnumunread; + $str .= '
'.$thisunread .' '.$strnumunread.'
'; } $str .= '
'; }