From f2dfaa73ffe96972f0d6b35aa65cf49b71d7513a Mon Sep 17 00:00:00 2001 From: Dhruv Goel Date: Wed, 20 Jun 2012 02:46:17 +0530 Subject: [PATCH] [feature/postgresql-fulltext-search] define access control specifiers PHPBB3-9730 --- phpBB/includes/search/fulltext_postgres.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/phpBB/includes/search/fulltext_postgres.php b/phpBB/includes/search/fulltext_postgres.php index 279706449a..aedc62ad7a 100644 --- a/phpBB/includes/search/fulltext_postgres.php +++ b/phpBB/includes/search/fulltext_postgres.php @@ -22,14 +22,14 @@ if (!defined('IN_PHPBB')) */ class phpbb_search_fulltext_postgres extends phpbb_search_base { - var $stats = array(); - var $word_length = array(); - var $split_words = array(); - var $search_query; - var $tsearch_query; - var $common_words = array(); - var $tsearch_usable = false; - var $version; + private $stats = array(); + private $split_words = array(); + private $tsearch_usable = false; + private $version; + private $tsearch_query; + public $search_query; + public $common_words = array(); + public $word_length = array(); public function __construct(&$error) {