diff options
author | Dhruv <dhruv.goel92@gmail.com> | 2012-11-09 16:08:32 +0530 |
---|---|---|
committer | Dhruv <dhruv.goel92@gmail.com> | 2012-11-09 16:46:37 +0100 |
commit | c5c9bc5ada9bcfdc0a1502b2b64d3fa394f37814 (patch) | |
tree | 705c85d6bdabe23f1d675fcabd9bf4ff5cfa549b /phpBB/includes/search | |
parent | 72245e41d0df20ec30967d12836170a07bf5b427 (diff) | |
download | forums-c5c9bc5ada9bcfdc0a1502b2b64d3fa394f37814.tar forums-c5c9bc5ada9bcfdc0a1502b2b64d3fa394f37814.tar.gz forums-c5c9bc5ada9bcfdc0a1502b2b64d3fa394f37814.tar.bz2 forums-c5c9bc5ada9bcfdc0a1502b2b64d3fa394f37814.tar.xz forums-c5c9bc5ada9bcfdc0a1502b2b64d3fa394f37814.zip |
[ticket/11050] get_common_words() returns empty array for sphinx
PHPBB-11050
Diffstat (limited to 'phpBB/includes/search')
-rw-r--r-- | phpBB/includes/search/fulltext_sphinx.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/search/fulltext_sphinx.php b/phpBB/includes/search/fulltext_sphinx.php index 2f6be20703..37e9240c7b 100644 --- a/phpBB/includes/search/fulltext_sphinx.php +++ b/phpBB/includes/search/fulltext_sphinx.php @@ -194,13 +194,13 @@ class phpbb_search_fulltext_sphinx } /** - * Returns the common_words array + * Returns an empty array as there are no common_words * * @return array common words that are ignored by search backend */ public function get_common_words() { - return $this->common_words; + return array(); } /** |