mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-06 00:37:42 +02:00
changed email validation, special characters do not need to be escaped within character class (added ampersand to email validation too) git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@3525 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -200,7 +200,7 @@ function auth($type, $forum_id, $userdata, $f_access = '')
|
||||
{
|
||||
case AUTH_ALL:
|
||||
$auth_user[$key] = TRUE;
|
||||
$auth_user[$key . '_type'] = $lang['Auth_Anonymous_users'];
|
||||
$auth_user[$key . '_type'] = $lang['Auth_Anonymous_Users'];
|
||||
break;
|
||||
|
||||
case AUTH_REG:
|
||||
@@ -239,7 +239,7 @@ function auth($type, $forum_id, $userdata, $f_access = '')
|
||||
{
|
||||
case AUTH_ALL:
|
||||
$auth_user[$f_forum_id][$key] = TRUE;
|
||||
$auth_user[$f_forum_id][$key . '_type'] = $lang['Auth_Anonymous_users'];
|
||||
$auth_user[$f_forum_id][$key . '_type'] = $lang['Auth_Anonymous_Users'];
|
||||
break;
|
||||
|
||||
case AUTH_REG:
|
||||
|
Reference in New Issue
Block a user