diff options
author | Dhruv <dhruv.goel92@gmail.com> | 2012-11-09 16:22:32 +0530 |
---|---|---|
committer | Dhruv <dhruv.goel92@gmail.com> | 2012-11-09 16:46:44 +0100 |
commit | a509a8ed2d921d4797e08531e70ba70afb167d9d (patch) | |
tree | d21ddde0612ff227f2f2ca96b507844deebd2f9a /phpBB/includes/search/fulltext_postgres.php | |
parent | c5c9bc5ada9bcfdc0a1502b2b64d3fa394f37814 (diff) | |
download | forums-a509a8ed2d921d4797e08531e70ba70afb167d9d.tar forums-a509a8ed2d921d4797e08531e70ba70afb167d9d.tar.gz forums-a509a8ed2d921d4797e08531e70ba70afb167d9d.tar.bz2 forums-a509a8ed2d921d4797e08531e70ba70afb167d9d.tar.xz forums-a509a8ed2d921d4797e08531e70ba70afb167d9d.zip |
[ticket/11050] make all properties protected in all search backends
PHPBB-11050
Diffstat (limited to 'phpBB/includes/search/fulltext_postgres.php')
-rw-r--r-- | phpBB/includes/search/fulltext_postgres.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/search/fulltext_postgres.php b/phpBB/includes/search/fulltext_postgres.php index 98bf010c93..12a1203249 100644 --- a/phpBB/includes/search/fulltext_postgres.php +++ b/phpBB/includes/search/fulltext_postgres.php @@ -82,20 +82,20 @@ class phpbb_search_fulltext_postgres extends phpbb_search_base * Operators are prefixed in search query and common words excluded * @var string */ - public $search_query; + protected $search_query; /** * Contains common words. * Common words are words with length less/more than min/max length * @var array */ - public $common_words = array(); + protected $common_words = array(); /** * Associative array stores the min and max word length to be searched * @var array */ - public $word_length = array(); + protected $word_length = array(); /** * Constructor |