aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/search/fulltext_mysql.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/search/fulltext_mysql.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/search/fulltext_mysql.php')
-rw-r--r--phpBB/includes/search/fulltext_mysql.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/search/fulltext_mysql.php b/phpBB/includes/search/fulltext_mysql.php
index 9660fd6986..827205f20d 100644
--- a/phpBB/includes/search/fulltext_mysql.php
+++ b/phpBB/includes/search/fulltext_mysql.php
@@ -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;
}