aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/search
diff options
context:
space:
mode:
authorDhruv <dhruv.goel92@gmail.com>2012-11-09 16:08:32 +0530
committerDhruv <dhruv.goel92@gmail.com>2012-11-09 16:46:37 +0100
commitc5c9bc5ada9bcfdc0a1502b2b64d3fa394f37814 (patch)
tree705c85d6bdabe23f1d675fcabd9bf4ff5cfa549b /phpBB/includes/search
parent72245e41d0df20ec30967d12836170a07bf5b427 (diff)
downloadforums-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.php4
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();
}
/**