mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
[ticket/11048] add access specifiers to phpbb native search properties
PHPBB3-11048
This commit is contained in:
parent
42d6e0715f
commit
a3a359d80a
1 changed files with 7 additions and 7 deletions
|
@ -22,14 +22,14 @@ if (!defined('IN_PHPBB'))
|
||||||
*/
|
*/
|
||||||
class phpbb_search_fulltext_native extends phpbb_search_base
|
class phpbb_search_fulltext_native extends phpbb_search_base
|
||||||
{
|
{
|
||||||
var $stats = array();
|
private $stats = array();
|
||||||
var $word_length = array();
|
public $word_length = array();
|
||||||
var $search_query;
|
public $search_query;
|
||||||
var $common_words = array();
|
public $common_words = array();
|
||||||
|
|
||||||
var $must_contain_ids = array();
|
private $must_contain_ids = array();
|
||||||
var $must_not_contain_ids = array();
|
private $must_not_contain_ids = array();
|
||||||
var $must_exclude_one_ids = array();
|
private $must_exclude_one_ids = array();
|
||||||
|
|
||||||
private $phpbb_root_path;
|
private $phpbb_root_path;
|
||||||
private $php_ext;
|
private $php_ext;
|
||||||
|
|
Loading…
Add table
Reference in a new issue