diff options
author | Oleg Pudeyev <oleg@bsdpower.com> | 2012-11-08 10:14:29 -0500 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2012-11-08 10:14:29 -0500 |
commit | 18a922c036f196e934fec1a1daab7cfaa98001ce (patch) | |
tree | b21e9d1de9593543d39c5c12d1a3533162c602ca /phpBB | |
parent | fc41b52cea379835b12950d4bdef2ca5c0d11246 (diff) | |
download | forums-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.php | 4 |
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; } |