|
I'm getting this error when I click on our forums profile page
Parse error: parse error, unexpected T_VARIABLE in /home/louise/public_html/Chat/includes/usercp_register.php on line 40
HEre is the code from line 40 to about line 70, maybe someone can help me figure it all out please! Thanks!
{ if (!defined('IN_PHPBB')
$unhtml_specialchars_match = array('#>#', '#<#', '#"#', '#&#') $unhtml_specialchars_replace = array('>', '<', '"', '&') } // --------------------------------------- // Load agreement template since user has not yet // agreed to registration conditions/coppa // function show_coppa() { global $userdata, $template, $lang, $phpbb_root_path, $phpEx
$template->set_filenames(array 'body' =>'agreement.tpl')
$template->assign_vars(array 'REGISTRATION' => $lang['Registration'], 'AGREEMENT' => $lang['Reg_agreement'], "AGREE_OVER_13" => $lang['Agree_over_13'], "AGREE_UNDER_13" => $lang['Agree_under_13'], 'DO_NOT_AGREE' => $lang['Agree_not'],
"U_AGREE_OVER13" => append_sid("profile.$phpEx?mode=register&agreed=true"), "U_AGREE_UNDER13" => append_sid("profile.$phpEx?mode=register&agreed=true&coppa=true") ); if ($custom_title_activated == TRUE) { $template->assign_block_vars('switch_custom_title', array() ); } $template->pparse('body');
} // // ---------------------------------------
|