diff options
Diffstat (limited to 'forum/utils/forums.php')
-rw-r--r-- | forum/utils/forums.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/forum/utils/forums.php b/forum/utils/forums.php index 06196a6..c9c48b5 100644 --- a/forum/utils/forums.php +++ b/forum/utils/forums.php @@ -25,7 +25,7 @@ class Forum { public function show() { - $newcls = ""; + $newcls = " forum_nonew"; if($this->newStuff) $newcls = " forum_new"; echo " <div class=\"forum\">\n"; @@ -84,9 +84,11 @@ class Forums { public function show() { + echo "<div class=\"forums\">\n"; foreach($this->forums as $forum) { $forum->show(); } + echo "</div>\n"; } private function read() |