1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-23 16:52:54 +02:00

Misc fixes

git-svn-id: file:///svn/phpbb/trunk@80 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
James Atkinson
2001-03-04 01:27:58 +00:00
parent e9aedae48f
commit 9411996f45
4 changed files with 15 additions and 7 deletions

View File

@@ -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");