diff options
| author | James Atkinson <thefinn@users.sourceforge.net> | 2001-03-04 01:27:58 +0000 |
|---|---|---|
| committer | James Atkinson <thefinn@users.sourceforge.net> | 2001-03-04 01:27:58 +0000 |
| commit | 9411996f4568b026d009ecd6426d2d7dec7bef1a (patch) | |
| tree | 5fd298607fc4a4329b0911474cc42c16f3e828a1 /phpBB/viewforum.php | |
| parent | e9aedae48fac38e7087514d4a863ff2b836378b3 (diff) | |
| download | forums-9411996f4568b026d009ecd6426d2d7dec7bef1a.tar forums-9411996f4568b026d009ecd6426d2d7dec7bef1a.tar.gz forums-9411996f4568b026d009ecd6426d2d7dec7bef1a.tar.bz2 forums-9411996f4568b026d009ecd6426d2d7dec7bef1a.tar.xz forums-9411996f4568b026d009ecd6426d2d7dec7bef1a.zip | |
Misc fixes
git-svn-id: file:///svn/phpbb/trunk@80 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/viewforum.php')
| -rw-r--r-- | phpBB/viewforum.php | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php index efdee4569e..094e5ee61f 100644 --- a/phpBB/viewforum.php +++ b/phpBB/viewforum.php @@ -43,10 +43,6 @@ if(!$result = $db->sql_query($sql)) error_die($db, QUERY_ERROR); } -$pagetype = "viewforum"; -$page_title = "View Forum - $forum_name"; -include('page_header.'.$phpEx); - // // Add checking for private forums here!! // @@ -71,6 +67,9 @@ for($x = 0; $x < $db->sql_numrows($result); $x++) $forum_moderators .= ", "; $forum_moderators .= "<a href=\"profile.$phpEx?mode=viewprofile&user_id=".$forum_row[$x]["user_id"]."\">".$forum_row[$x]["username"]."</a>"; } +$pagetype = "viewforum"; +$page_title = "View Forum - $forum_name"; +include('page_header.'.$phpEx); $template->set_block("body", "topicrow", "topics"); |
