summaryrefslogtreecommitdiff
path: root/forum/utils/forums.php
diff options
context:
space:
mode:
authordeva <deva>2008-10-26 20:53:16 +0000
committerdeva <deva>2008-10-26 20:53:16 +0000
commit3b5656db543462ec1f126d0d97b1ee1ba25c782e (patch)
treee85f52b8a361dffa3712baebc08a4000effc3f5c /forum/utils/forums.php
parentd2b6d71dfc8f353d4b56f1b76552f6897493bb6d (diff)
Added no-cache pragma. Fixed indentation in forum code.
Diffstat (limited to 'forum/utils/forums.php')
-rw-r--r--forum/utils/forums.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/forum/utils/forums.php b/forum/utils/forums.php
index 1ee2eb9..1827e3c 100644
--- a/forum/utils/forums.php
+++ b/forum/utils/forums.php
@@ -16,11 +16,11 @@ class Forum {
public function show()
{
- echo "<div class=\"forum\">";
- if($this->newStuff) echo "<div class=\"new\"></div>";
- else echo "<div class=\"nonew\"></div>";
- echo "<a href=\"?fid=" . $this->fid . "\">" . $this->name . "</a>";
- echo "</div>";
+ echo " <div class=\"forum\">\n";
+ if($this->newStuff) echo " <div class=\"new\"></div>\n";
+ else echo " <div class=\"nonew\"></div>\n";
+ echo " <a href=\"?fid=" . $this->fid . "\">" . $this->name . "</a>\n";
+ echo " </div>\n";
}
public function Forum($fid, $name)