diff options
author | Dhruv <dhruv.goel92@gmail.com> | 2012-10-04 01:51:57 +0530 |
---|---|---|
committer | Dhruv <dhruv.goel92@gmail.com> | 2012-10-04 01:51:57 +0530 |
commit | 52b25aaf20f512911a981958e0efa9365eb34489 (patch) | |
tree | 6e30bd5dac83edde4cdbdd66b6c783039fba24da /phpBB/includes/search | |
parent | a2e1989b012e3f77a18c2758cd913245ce3c180b (diff) | |
download | forums-52b25aaf20f512911a981958e0efa9365eb34489.tar forums-52b25aaf20f512911a981958e0efa9365eb34489.tar.gz forums-52b25aaf20f512911a981958e0efa9365eb34489.tar.bz2 forums-52b25aaf20f512911a981958e0efa9365eb34489.tar.xz forums-52b25aaf20f512911a981958e0efa9365eb34489.zip |
[ticket/11051] add get_word_len() in sphinx search
get_word_len() for sphinx search backend returns false always and
triggers proper error.
PHPBB3-11051
Diffstat (limited to 'phpBB/includes/search')
-rw-r--r-- | phpBB/includes/search/fulltext_sphinx.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/phpBB/includes/search/fulltext_sphinx.php b/phpBB/includes/search/fulltext_sphinx.php index 256c3a6d1c..a6cc47b836 100644 --- a/phpBB/includes/search/fulltext_sphinx.php +++ b/phpBB/includes/search/fulltext_sphinx.php @@ -109,6 +109,16 @@ class phpbb_search_fulltext_sphinx } /** + * Returns false as there is no word_len array + * + * @return false + */ + public function get_word_length() + { + return false; + } + + /** * Returns the common_words array * * @return array common words that are ignored by search backend |