mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-26 05:08:52 +00:00
[ticket/11050] add missing @var in native search
PHPBB3-11050
This commit is contained in:
parent
8eed3591a9
commit
1ded6d94ac
1 changed files with 3 additions and 0 deletions
|
@ -49,16 +49,19 @@ class phpbb_search_fulltext_native extends phpbb_search_base
|
|||
|
||||
/**
|
||||
* Post ids of posts containing words that are to be included
|
||||
* @var array
|
||||
*/
|
||||
protected $must_contain_ids = array();
|
||||
|
||||
/**
|
||||
* Post ids of posts containing words that should not be included
|
||||
* @var array
|
||||
*/
|
||||
protected $must_not_contain_ids = array();
|
||||
|
||||
/**
|
||||
* Post ids of posts containing atleast one word that needs to be excluded
|
||||
* @var array
|
||||
*/
|
||||
protected $must_exclude_one_ids = array();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue