diff options
author | Dhruv <dhruv.goel92@gmail.com> | 2012-08-14 17:47:01 +0530 |
---|---|---|
committer | Dhruv <dhruv.goel92@gmail.com> | 2012-08-14 17:47:01 +0530 |
commit | a9fd98c1366cc63032bcfa5d5409ebf891ea5095 (patch) | |
tree | fad63d8199b97866b15fd32a8a2f47d918c08654 | |
parent | 469d8083656e455dc52cd1e4e65fdd7c86c5e2ab (diff) | |
download | forums-a9fd98c1366cc63032bcfa5d5409ebf891ea5095.tar forums-a9fd98c1366cc63032bcfa5d5409ebf891ea5095.tar.gz forums-a9fd98c1366cc63032bcfa5d5409ebf891ea5095.tar.bz2 forums-a9fd98c1366cc63032bcfa5d5409ebf891ea5095.tar.xz forums-a9fd98c1366cc63032bcfa5d5409ebf891ea5095.zip |
[ticket/11048] use protected instead of private in pgsql fulltext
PHPBB3-11048
-rw-r--r-- | phpBB/includes/search/fulltext_postgres.php | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/phpBB/includes/search/fulltext_postgres.php b/phpBB/includes/search/fulltext_postgres.php index d897c73745..50ed785093 100644 --- a/phpBB/includes/search/fulltext_postgres.php +++ b/phpBB/includes/search/fulltext_postgres.php @@ -22,15 +22,15 @@ if (!defined('IN_PHPBB')) */ class phpbb_search_fulltext_postgres extends phpbb_search_base { - private $stats = array(); - private $split_words = array(); - private $tsearch_usable = false; - private $version; - private $tsearch_query; - private $phrase_search = false; - private $config; - private $db; - private $user; + protected $stats = array(); + protected $split_words = array(); + protected $tsearch_usable = false; + protected $version; + protected $tsearch_query; + protected $phrase_search = false; + protected $config; + protected $db; + protected $user; public $search_query; public $common_words = array(); public $word_length = array(); @@ -714,7 +714,7 @@ class phpbb_search_fulltext_postgres extends phpbb_search_base /** * Computes the stats and store them in the $this->stats associative array */ - private function get_stats() + protected function get_stats() { if ($this->db->sql_layer != 'postgres') { |