diff options
| author | Dhruv Goel <dhruv.goel92@gmail.com> | 2012-06-20 02:46:17 +0530 | 
|---|---|---|
| committer | Dhruv Goel <dhruv.goel92@gmail.com> | 2012-07-05 21:17:22 +0530 | 
| commit | f2dfaa73ffe96972f0d6b35aa65cf49b71d7513a (patch) | |
| tree | c7a5fbb21f8d7ba7e3d78835612451bc0488a2d4 | |
| parent | ebc4c20199f22071f2dcc3489f94422658d27ac2 (diff) | |
| download | forums-f2dfaa73ffe96972f0d6b35aa65cf49b71d7513a.tar forums-f2dfaa73ffe96972f0d6b35aa65cf49b71d7513a.tar.gz forums-f2dfaa73ffe96972f0d6b35aa65cf49b71d7513a.tar.bz2 forums-f2dfaa73ffe96972f0d6b35aa65cf49b71d7513a.tar.xz forums-f2dfaa73ffe96972f0d6b35aa65cf49b71d7513a.zip  | |
[feature/postgresql-fulltext-search] define access control specifiers
PHPBB3-9730
| -rw-r--r-- | phpBB/includes/search/fulltext_postgres.php | 16 | 
1 files 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)  	{  | 
