aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2012-11-08 10:14:29 -0500
committerOleg Pudeyev <oleg@bsdpower.com>2012-11-08 10:14:29 -0500
commit18a922c036f196e934fec1a1daab7cfaa98001ce (patch)
treeb21e9d1de9593543d39c5c12d1a3533162c602ca /phpBB
parentfc41b52cea379835b12950d4bdef2ca5c0d11246 (diff)
downloadforums-18a922c036f196e934fec1a1daab7cfaa98001ce.tar
forums-18a922c036f196e934fec1a1daab7cfaa98001ce.tar.gz
forums-18a922c036f196e934fec1a1daab7cfaa98001ce.tar.bz2
forums-18a922c036f196e934fec1a1daab7cfaa98001ce.tar.xz
forums-18a922c036f196e934fec1a1daab7cfaa98001ce.zip
[ticket/11174] Started on search tests - keyword splitting.
PHPBB3-11174
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/search/fulltext_native.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/includes/search/fulltext_native.php b/phpBB/includes/search/fulltext_native.php
index bbc2236b3c..bc4ac4bbe0 100644
--- a/phpBB/includes/search/fulltext_native.php
+++ b/phpBB/includes/search/fulltext_native.php
@@ -59,6 +59,10 @@ class phpbb_search_fulltext_native extends phpbb_search_base
{
include($this->phpbb_root_path . 'includes/utf/utf_normalizer.' . $this->php_ext);
}
+ if (!function_exists('utf8_decode_ncr'))
+ {
+ include($this->phpbb_root_path . 'includes/utf/utf_tools.' . $this->php_ext);
+ }
$error = false;
}