mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 21:38:54 +00:00
[feature/postgresql-fulltext-search] define access control specifiers
PHPBB3-9730
This commit is contained in:
parent
ebc4c20199
commit
f2dfaa73ff
1 changed files with 8 additions and 8 deletions
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue