From 3b5656db543462ec1f126d0d97b1ee1ba25c782e Mon Sep 17 00:00:00 2001 From: deva Date: Sun, 26 Oct 2008 20:53:16 +0000 Subject: Added no-cache pragma. Fixed indentation in forum code. --- forum/utils/view.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'forum/utils/view.php') diff --git a/forum/utils/view.php b/forum/utils/view.php index 9ff3143..d22c8d8 100644 --- a/forum/utils/view.php +++ b/forum/utils/view.php @@ -1,5 +1,5 @@ "; +echo "
"; if($fid) echo "forums"; if($tid) echo ":: threads"; if($pid) echo ":: posts"; @@ -12,15 +12,15 @@ echo "
\n"; $posts = new Posts($FORUMS_DIR . "/" . $fid . "/" . $tid . ".xml"); $posts->show(); } else if($fid) { - echo "

Threads

"; - echo "New thread"; + echo "

Threads

\n"; + echo " New thread\n"; include_once("threads.php"); $threads = new Threads($FORUMS_DIR . "/" . $fid); $threads->show(); } else { - echo "

Forums

"; + echo "

Forums

\n"; include_once("forums.php"); $forums = new Forums($FORUMS_DIR . "/forums.xml"); -- cgit v1.2.3