aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_user.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2011-08-21 14:33:40 +0200
committerAndreas Fischer <bantu@phpbb.com>2011-08-21 14:34:34 +0200
commitac11806bf449b1ca1b69eae023b5ec318a10547d (patch)
tree7e95076ed735e9dad8f7ecdc4f88682842b31ec8 /phpBB/includes/functions_user.php
parent0b9fe01cce56cd8421e8eb43cdadc63f1d244987 (diff)
downloadforums-ac11806bf449b1ca1b69eae023b5ec318a10547d.tar
forums-ac11806bf449b1ca1b69eae023b5ec318a10547d.tar.gz
forums-ac11806bf449b1ca1b69eae023b5ec318a10547d.tar.bz2
forums-ac11806bf449b1ca1b69eae023b5ec318a10547d.tar.xz
forums-ac11806bf449b1ca1b69eae023b5ec318a10547d.zip
[ticket/10329] Add phpbb_ prefix to new pcre_utf8_support() function.
Introduced by 6b4d0a254218e8d40151ca1bdff8c439f89502e9. PHPBB3-10329
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 124aac18be..930cd4625f 100644
--- a/phpBB/includes/functions_user.php
+++ b/phpBB/includes/functions_user.php
@@ -1477,7 +1477,7 @@ function validate_username($username, $allowed_username = false)
$mbstring = $pcre = false;
// generic UTF-8 character types supported?
- if (pcre_utf8_support())
+ if (phpbb_pcre_utf8_support())
{
$pcre = true;
}
@@ -1614,7 +1614,7 @@ function validate_password($password)
$pcre = $mbstring = false;
// generic UTF-8 character types supported?
- if (pcre_utf8_support())
+ if (phpbb_pcre_utf8_support())
{
$upp = '\p{Lu}';
$low = '\p{Ll}';