Update of /cvsroot/mxbb/phpbb2mxp/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv16598/includes Modified Files: auth.php bbcode.php constants.php emailer.php functions.php functions_admin.php functions_post.php functions_search.php functions_selects.php functions_validate.php page_header.php page_header_normal.php page_tail.php prune.php sessions.php smtp.php sql_parse.php topic_review.php usercp_activate.php usercp_avatar.php usercp_confirm.php usercp_email.php usercp_register.php usercp_sendpasswd.php usercp_viewprofile.php Log Message: fixes Index: usercp_register.php =================================================================== RCS file: /cvsroot/mxbb/phpbb2mxp/includes/usercp_register.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** usercp_register.php 24 Jan 2009 05:09:46 -0000 1.2 --- usercp_register.php 24 Jan 2009 07:30:05 -0000 1.3 *************** *** 79,87 **** if ( $mode == 'register' && !isset($HTTP_POST_VARS['agreed']) && !isset($HTTP_GET_VARS['agreed']) ) { ! include($phpbb_root_path . 'includes/page_header.'.$phpEx); show_coppa(); ! include($phpbb_root_path . 'includes/page_tail.'.$phpEx); } --- 79,87 ---- if ( $mode == 'register' && !isset($HTTP_POST_VARS['agreed']) && !isset($HTTP_GET_VARS['agreed']) ) { ! include_once($phpbb_root_path . 'includes/page_header.'.$phpEx); show_coppa(); ! include_once($phpbb_root_path . 'includes/page_tail.'.$phpEx); } *************** *** 98,104 **** $mode == 'register' ) { ! include($phpbb_root_path . 'includes/functions_validate.'.$phpEx); ! include($phpbb_root_path . 'includes/bbcode.'.$phpEx); ! include($phpbb_root_path . 'includes/functions_post.'.$phpEx); if ( $mode == 'editprofile' ) --- 98,104 ---- $mode == 'register' ) { ! include_once($phpbb_root_path . 'includes/functions_validate.'.$phpEx); ! include_once($phpbb_root_path . 'includes/bbcode.'.$phpEx); ! include_once($phpbb_root_path . 'includes/functions_post.'.$phpEx); if ( $mode == 'editprofile' ) *************** *** 872,876 **** else { ! include($phpbb_root_path . 'includes/functions_selects.'.$phpEx); if ( !isset($coppa) ) --- 872,876 ---- else { ! include_once($phpbb_root_path . 'includes/functions_selects.'.$phpEx); if ( !isset($coppa) ) |