From ac11806bf449b1ca1b69eae023b5ec318a10547d Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Sun, 21 Aug 2011 14:33:40 +0200 Subject: [ticket/10329] Add phpbb_ prefix to new pcre_utf8_support() function. Introduced by 6b4d0a254218e8d40151ca1bdff8c439f89502e9. PHPBB3-10329 --- phpBB/includes/functions_user.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'phpBB/includes/functions_user.php') 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}'; -- cgit v1.2.1