Quote:
Originally Posted by richgeeks
i just made this modification and it is not allowing anyone to register now, even when i turn user banning options off...please help
anyone???
|
The function has changed for 3.6. I'm trying a fix now, and will let you know if it works.
Cheers,
Here is the correct code (found somewhere else on this forum):
PHP Code:
// ###################### Start checkbannedemail #######################
function is_banned_email($email)
{
global $vbulletin;
if ($vbulletin->options['enablebanning'] AND $vbulletin->banemail !== null)
{
$bannedemails = preg_split('/\s+/', $vbulletin->banemail, -1, PREG_SPLIT_NO_EMPTY);
foreach ($bannedemails AS $bannedemail)
{
if (is_valid_email($bannedemail))
{
$regex = '^' . preg_quote($bannedemail, '#') . '$';
}
else
{
$regex = preg_quote($bannedemail, '#') . ($vbulletin->options['aggressiveemailban'] ? '' : '$');
}
if (preg_match("#$regex#i", $email))
{
return 0;
}
}
return 1;
}
return 0;
}