diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-02-07 18:27:15 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-02-07 18:27:15 +0000 |
commit | 2a411523a9b607f68686d6df37489fca361432f4 (patch) | |
tree | 021d096f84876a73c9e67544d6b1cb0564a490b5 | |
parent | 660bcb06365a1687c757a6ac8e056f44363a31de (diff) | |
download | forums-2a411523a9b607f68686d6df37489fca361432f4.tar forums-2a411523a9b607f68686d6df37489fca361432f4.tar.gz forums-2a411523a9b607f68686d6df37489fca361432f4.tar.bz2 forums-2a411523a9b607f68686d6df37489fca361432f4.tar.xz forums-2a411523a9b607f68686d6df37489fca361432f4.zip |
missing global auth
git-svn-id: file:///svn/phpbb/trunk@3463 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/mcp.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/mcp.php b/phpBB/mcp.php index 5efc9d1c5a..446e7fe0e4 100644 --- a/phpBB/mcp.php +++ b/phpBB/mcp.php @@ -799,7 +799,7 @@ include($phpbb_root_path . 'includes/page_tail.' . $phpEx); // function mcp_header($template_name, $forum_nav = FALSE, $jump_mode = 'forum_view') { - global $phpbb_root_path, $phpEx, $SID, $template, $user, $db, $config; + global $phpbb_root_path, $phpEx, $SID, $template, $user, $auth, $db, $config; global $forum_id, $forum_info; $forum_id = (!empty($forum_id)) ? $forum_id : FALSE; |