aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_user.php
diff options
context:
space:
mode:
authorIgor Wiedler <igor@wiedler.ch>2010-06-25 19:09:17 +0200
committerIgor Wiedler <igor@wiedler.ch>2010-12-28 22:37:33 +0100
commit6b4d0a254218e8d40151ca1bdff8c439f89502e9 (patch)
tree18a2fdf9db565110c73f796e030b1fbed2393472 /phpBB/includes/functions_user.php
parenteda9fbbb6363cad0f2035b7a1f9fafe27f23832b (diff)
downloadforums-6b4d0a254218e8d40151ca1bdff8c439f89502e9.tar
forums-6b4d0a254218e8d40151ca1bdff8c439f89502e9.tar.gz
forums-6b4d0a254218e8d40151ca1bdff8c439f89502e9.tar.bz2
forums-6b4d0a254218e8d40151ca1bdff8c439f89502e9.tar.xz
forums-6b4d0a254218e8d40151ca1bdff8c439f89502e9.zip
[ticket/9574] Add pcre_utf8_support() function
Refactor the check for PCRE UTF-8 support into a new pcre_utf8_support() function. PHPBB3-9574
Diffstat (limited to 'phpBB/includes/functions_user.php')
-rw-r--r--phpBB/includes/functions_user.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions_user.php b/phpBB/includes/functions_user.php
index 9ab9d6d568..b99393d24a 100644
--- a/phpBB/includes/functions_user.php
+++ b/phpBB/includes/functions_user.php
@@ -1490,7 +1490,7 @@ function validate_username($username, $allowed_username = false)
$mbstring = $pcre = false;
// generic UTF-8 character types supported?
- if (@preg_match('/\p{L}/u', 'a') !== false)
+ if (pcre_utf8_support())
{
$pcre = true;
}
@@ -1626,7 +1626,7 @@ function validate_password($password)
$pcre = $mbstring = false;
// generic UTF-8 character types supported?
- if (@preg_match('/\p{L}/u', 'a') !== false)
+ if (pcre_utf8_support())
{
$upp = '\p{Lu}';
$low = '\p{Ll}';