aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2008-05-18 20:00:46 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2008-05-18 20:00:46 +0000
commit5828612677cfc62f176d8e32b3027bfc70e76a65 (patch)
treebd423895c3a91b3fdca67a3839ac0f6b43052f52 /phpBB/includes
parentaf63e0ee845187db24a137317849c4619c137a3b (diff)
downloadforums-5828612677cfc62f176d8e32b3027bfc70e76a65.tar
forums-5828612677cfc62f176d8e32b3027bfc70e76a65.tar.gz
forums-5828612677cfc62f176d8e32b3027bfc70e76a65.tar.bz2
forums-5828612677cfc62f176d8e32b3027bfc70e76a65.tar.xz
forums-5828612677cfc62f176d8e32b3027bfc70e76a65.zip
#26885
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8563 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/functions_user.php9
1 files changed, 6 insertions, 3 deletions
diff --git a/phpBB/includes/functions_user.php b/phpBB/includes/functions_user.php
index 1d774a8ff4..0ed93d4376 100644
--- a/phpBB/includes/functions_user.php
+++ b/phpBB/includes/functions_user.php
@@ -1194,6 +1194,8 @@ function user_ipwhois($ip)
*/
function validate_data($data, $val_ary)
{
+ global $user;
+
$error = array();
foreach ($val_ary as $var => $val_seq)
@@ -1210,7 +1212,8 @@ function validate_data($data, $val_ary)
if ($result = call_user_func_array('validate_' . $function, $validate))
{
- $error[] = $result . '_' . strtoupper($var);
+ // Since errors are checked later for their language file existence, we need to make sure custom errors are not adjusted.
+ $error[] = (empty($user->lang[$result . '_' . strtoupper($var)])) ? $result : $result . '_' . strtoupper($var);
}
}
}
@@ -1610,9 +1613,9 @@ function validate_email($email, $allowed_email = false)
}
}
- if ($user->check_ban(false, false, $email, true) == true)
+ if (($ban_reason = $user->check_ban(false, false, $email, true)) !== false)
{
- return 'EMAIL_BANNED';
+ return ($ban_reason === true) ? 'EMAIL_BANNED' : $ban_reason;
}
if (!$config['allow_emailreuse'])