mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
[ticket/11050] fix split words doc block language
PHPBB3-11050
This commit is contained in:
parent
b7dae379d5
commit
6ae64f1c1e
3 changed files with 3 additions and 3 deletions
|
@ -29,7 +29,7 @@ class phpbb_search_fulltext_mysql extends phpbb_search_base
|
||||||
protected $stats = array();
|
protected $stats = array();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the words entered by user splitted in array
|
* Holds the words entered by user, obtained by splitting the entered query on whitespace
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
protected $split_words = array();
|
protected $split_words = array();
|
||||||
|
|
|
@ -29,7 +29,7 @@ class phpbb_search_fulltext_postgres extends phpbb_search_base
|
||||||
protected $stats = array();
|
protected $stats = array();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the words entered by user splitted in array
|
* Holds the words entered by user, obtained by splitting the entered query on whitespace
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
protected $split_words = array();
|
protected $split_words = array();
|
||||||
|
|
|
@ -35,7 +35,7 @@ class phpbb_search_fulltext_sphinx
|
||||||
protected $stats = array();
|
protected $stats = array();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the words entered by user splitted in array
|
* Holds the words entered by user, obtained by splitting the entered query on whitespace
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
protected $split_words = array();
|
protected $split_words = array();
|
||||||
|
|
Loading…
Add table
Reference in a new issue