1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 08:47:45 +02:00

[ticket/10329] Add phpbb_ prefix to new pcre_utf8_support() function.

Introduced by 6b4d0a2542.

PHPBB3-10329
This commit is contained in:
Andreas Fischer
2011-08-21 14:33:40 +02:00
parent 0b9fe01cce
commit ac11806bf4
4 changed files with 6 additions and 6 deletions

View File

@@ -43,7 +43,7 @@ class fulltext_mysql extends search_backend
$this->word_length = array('min' => $config['fulltext_mysql_min_word_len'], 'max' => $config['fulltext_mysql_max_word_len']);
// PHP may not be linked with the bundled PCRE lib and instead with an older version
if (pcre_utf8_support())
if (phpbb_pcre_utf8_support())
{
$this->pcre_properties = true;
}