I tried that code under the Start Signup, Start Add Member, and the Start Register sections. Which section does that code go in? The code looks simlar in each, but not exactly what you typed. When I tried what you gave me, all I got was a white blank screen at different point depending on where I inserted the code. This is what I have before inserting:
if ($_REQUEST['do'] == 'signup')
{
globalize($_REQUEST, array('month' => INT, 'year' => INT));
if (!$vboptions['allowregistration'])
{
eval(print_standard_error('error_noregister'));
}
if ($bbuserinfo['userid'] != 0 AND !$vboptions['allowmultiregs'])
{
eval(print_standard_error('error_alreadyregistered '));
}
|