mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
[ticket/11050] get_common_words() returns empty array for sphinx
PHPBB-11050
This commit is contained in:
parent
72245e41d0
commit
c5c9bc5ada
1 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue