From c5c9bc5ada9bcfdc0a1502b2b64d3fa394f37814 Mon Sep 17 00:00:00 2001 From: Dhruv Date: Fri, 9 Nov 2012 16:08:32 +0530 Subject: [PATCH] [ticket/11050] get_common_words() returns empty array for sphinx PHPBB-11050 --- phpBB/includes/search/fulltext_sphinx.php | 4 ++-- 1 file 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(); } /**