diff options
| author | Dhruv <dhruv.goel92@gmail.com> | 2012-08-10 16:35:06 +0530 |
|---|---|---|
| committer | Dhruv <dhruv.goel92@gmail.com> | 2012-08-10 16:35:06 +0530 |
| commit | a3a359d80ac5a4594ac6e7eee0b851d40d6ccf66 (patch) | |
| tree | e50d8509385cb29ec6e9988f65c4f71b0f66581b /phpBB/includes/search/fulltext_native.php | |
| parent | 42d6e0715feacd4bea4cdfc31272546c414df6ef (diff) | |
| download | forums-a3a359d80ac5a4594ac6e7eee0b851d40d6ccf66.tar forums-a3a359d80ac5a4594ac6e7eee0b851d40d6ccf66.tar.gz forums-a3a359d80ac5a4594ac6e7eee0b851d40d6ccf66.tar.bz2 forums-a3a359d80ac5a4594ac6e7eee0b851d40d6ccf66.tar.xz forums-a3a359d80ac5a4594ac6e7eee0b851d40d6ccf66.zip | |
[ticket/11048] add access specifiers to phpbb native search properties
PHPBB3-11048
Diffstat (limited to 'phpBB/includes/search/fulltext_native.php')
| -rw-r--r-- | phpBB/includes/search/fulltext_native.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/phpBB/includes/search/fulltext_native.php b/phpBB/includes/search/fulltext_native.php index 478b1f2c82..d66e690c76 100644 --- a/phpBB/includes/search/fulltext_native.php +++ b/phpBB/includes/search/fulltext_native.php @@ -22,14 +22,14 @@ if (!defined('IN_PHPBB')) */ class phpbb_search_fulltext_native extends phpbb_search_base { - var $stats = array(); - var $word_length = array(); - var $search_query; - var $common_words = array(); - - var $must_contain_ids = array(); - var $must_not_contain_ids = array(); - var $must_exclude_one_ids = array(); + private $stats = array(); + public $word_length = array(); + public $search_query; + public $common_words = array(); + + private $must_contain_ids = array(); + private $must_not_contain_ids = array(); + private $must_exclude_one_ids = array(); private $phpbb_root_path; private $php_ext; |
