summaryrefslogtreecommitdiff
path: root/forum/utils/forums.php
diff options
context:
space:
mode:
authordeva <deva>2010-05-21 12:38:09 +0000
committerdeva <deva>2010-05-21 12:38:09 +0000
commita7b6200402e341e97472ec401eabe4cf49f1161c (patch)
tree8a519821ab488d3f66488bd26565e2e95e4c0a40 /forum/utils/forums.php
parent78e8418d39975e22043b3ffe1df04a439c9ee25c (diff)
More info in views.
Diffstat (limited to 'forum/utils/forums.php')
-rw-r--r--forum/utils/forums.php4
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()