|
From: Paul S. O. <ps...@us...> - 2001-11-25 03:11:53
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv20358
Modified Files:
modcp.php
Log Message:
oops, missing page_header ...
Index: modcp.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/modcp.php,v
retrieving revision 1.47
retrieving revision 1.48
diff -C2 -r1.47 -r1.48
*** modcp.php 2001/11/25 00:21:07 1.47
--- modcp.php 2001/11/25 03:11:50 1.48
***************
*** 189,192 ****
--- 189,195 ----
{
case 'delete':
+ $page_title = $lang['Mod_CP'];
+ include($phpbb_root_path . 'includes/page_header.'.$phpEx);
+
if($confirm)
{
***************
*** 480,483 ****
--- 483,489 ----
case 'move':
+ $page_title = $lang['Mod_CP'];
+ include($phpbb_root_path . 'includes/page_header.'.$phpEx);
+
if( $confirm )
{
***************
*** 695,698 ****
--- 701,707 ----
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'] )
{
***************
*** 892,895 ****
--- 901,907 ----
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'] : "";
|