[ticket/11050] get_common_words() returns empty array for sphinx

PHPBB-11050
This commit is contained in:
Dhruv 2012-11-09 16:08:32 +05:30
parent 72245e41d0
commit c5c9bc5ada

View file

@ -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 * @return array common words that are ignored by search backend
*/ */
public function get_common_words() public function get_common_words()
{ {
return $this->common_words; return array();
} }
/** /**