[feature/postgresql-fulltext-search] define access control specifiers

PHPBB3-9730
This commit is contained in:
Dhruv Goel 2012-06-20 02:46:17 +05:30
parent ebc4c20199
commit f2dfaa73ff

View file

@ -22,14 +22,14 @@ if (!defined('IN_PHPBB'))
*/ */
class phpbb_search_fulltext_postgres extends phpbb_search_base class phpbb_search_fulltext_postgres extends phpbb_search_base
{ {
var $stats = array(); private $stats = array();
var $word_length = array(); private $split_words = array();
var $split_words = array(); private $tsearch_usable = false;
var $search_query; private $version;
var $tsearch_query; private $tsearch_query;
var $common_words = array(); public $search_query;
var $tsearch_usable = false; public $common_words = array();
var $version; public $word_length = array();
public function __construct(&$error) public function __construct(&$error)
{ {