aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorDhruv <dhruv.goel92@gmail.com>2012-08-14 17:35:24 +0530
committerDhruv <dhruv.goel92@gmail.com>2012-08-14 17:35:24 +0530
commit5698d03ead081d167264a1a561b61b7ba9af1587 (patch)
tree21105e5d4489ff685ff617255db6682434066be8 /phpBB/includes
parentd0cdf445fba40401171b672ebd8fd1549b15a78f (diff)
downloadforums-5698d03ead081d167264a1a561b61b7ba9af1587.tar
forums-5698d03ead081d167264a1a561b61b7ba9af1587.tar.gz
forums-5698d03ead081d167264a1a561b61b7ba9af1587.tar.bz2
forums-5698d03ead081d167264a1a561b61b7ba9af1587.tar.xz
forums-5698d03ead081d167264a1a561b61b7ba9af1587.zip
[ticket/11048] use protected instead of private in mysql fulltext
PHPBB3-11048
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/search/fulltext_mysql.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/phpBB/includes/search/fulltext_mysql.php b/phpBB/includes/search/fulltext_mysql.php
index 8684258982..cf89ab1c24 100644
--- a/phpBB/includes/search/fulltext_mysql.php
+++ b/phpBB/includes/search/fulltext_mysql.php
@@ -22,11 +22,11 @@ if (!defined('IN_PHPBB'))
*/
class phpbb_search_fulltext_mysql extends phpbb_search_base
{
- private $stats = array();
- private $split_words = array();
- private $config;
- private $db;
- private $user;
+ protected $stats = array();
+ protected $split_words = array();
+ protected $config;
+ protected $db;
+ protected $user;
public $word_length = array();
public $search_query;
public $common_words = array();
@@ -787,7 +787,7 @@ class phpbb_search_fulltext_mysql 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 (strpos($this->db->sql_layer, 'mysql') === false)
{