diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-11-25 03:11:50 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-11-25 03:11:50 +0000 |
commit | a25d1820f584595a8d55398358f4ebfd8e165773 (patch) | |
tree | 8f8ef6029b2afedf43117b698330d1c06d989b17 /phpBB | |
parent | 5c2c27f40d40722f685430b453039e01b585c6f4 (diff) | |
download | forums-a25d1820f584595a8d55398358f4ebfd8e165773.tar forums-a25d1820f584595a8d55398358f4ebfd8e165773.tar.gz forums-a25d1820f584595a8d55398358f4ebfd8e165773.tar.bz2 forums-a25d1820f584595a8d55398358f4ebfd8e165773.tar.xz forums-a25d1820f584595a8d55398358f4ebfd8e165773.zip |
oops, missing page_header ...
git-svn-id: file:///svn/phpbb/trunk@1440 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/modcp.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/phpBB/modcp.php b/phpBB/modcp.php index 5e0ac8a472..22b10a06af 100644 --- a/phpBB/modcp.php +++ b/phpBB/modcp.php @@ -188,6 +188,9 @@ if( !$is_auth['auth_mod'] ) switch($mode) { case 'delete': + $page_title = $lang['Mod_CP']; + include($phpbb_root_path . 'includes/page_header.'.$phpEx); + if($confirm) { $topics = ( isset($HTTP_POST_VARS['topic_id_list']) ) ? $HTTP_POST_VARS['topic_id_list'] : array($topic_id); @@ -479,6 +482,9 @@ switch($mode) break; case 'move': + $page_title = $lang['Mod_CP']; + include($phpbb_root_path . 'includes/page_header.'.$phpEx); + if( $confirm ) { $new_forum_id = $HTTP_POST_VARS['new_forum']; @@ -694,6 +700,9 @@ switch($mode) break; case 'split': + $page_title = $lang['Mod_CP']; + include($phpbb_root_path . 'includes/page_header.'.$phpEx); + if( $HTTP_POST_VARS['split_type_all'] || $HTTP_POST_VARS['split_type_beyond'] ) { $posts = $HTTP_POST_VARS['post_id_list']; @@ -891,6 +900,9 @@ switch($mode) break; case 'ip': + $page_title = $lang['Mod_CP']; + include($phpbb_root_path . 'includes/page_header.'.$phpEx); + $rdns_ip_num = ( isset($HTTP_GET_VARS['rdns']) ) ? $HTTP_GET_VARS['rdns'] : ""; if( !$post_id ) |