diff options
author | David M <davidmj@users.sourceforge.net> | 2007-07-14 15:48:54 +0000 |
---|---|---|
committer | David M <davidmj@users.sourceforge.net> | 2007-07-14 15:48:54 +0000 |
commit | 5a921c344d6c7f6b68944914fffaf1f8d4888693 (patch) | |
tree | 2257bca27ff5ba7eed32d8fe31d0447ca523c4e2 /phpBB/includes/functions_user.php | |
parent | 3585dbd42c114a63d585e68e14f52f2a2918632a (diff) | |
download | forums-5a921c344d6c7f6b68944914fffaf1f8d4888693.tar forums-5a921c344d6c7f6b68944914fffaf1f8d4888693.tar.gz forums-5a921c344d6c7f6b68944914fffaf1f8d4888693.tar.bz2 forums-5a921c344d6c7f6b68944914fffaf1f8d4888693.tar.xz forums-5a921c344d6c7f6b68944914fffaf1f8d4888693.zip |
#13225
git-svn-id: file:///svn/phpbb/trunk@7885 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_user.php')
-rw-r--r-- | phpBB/includes/functions_user.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_user.php b/phpBB/includes/functions_user.php index 46ea90fa3a..8750ca91a0 100644 --- a/phpBB/includes/functions_user.php +++ b/phpBB/includes/functions_user.php @@ -1500,7 +1500,7 @@ function validate_password($password) { foreach ($chars as $char) { - if (!mb_ereg_match($char, $password)) + if (mb_ereg($char, $password) === false) { return 'INVALID_CHARS'; } |