aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/includes/search/fulltext_mysql.php6
-rw-r--r--phpBB/includes/search/fulltext_native.php6
-rw-r--r--phpBB/includes/search/fulltext_postgres.php6
-rw-r--r--phpBB/includes/search/fulltext_sphinx.php12
4 files changed, 15 insertions, 15 deletions
diff --git a/phpBB/includes/search/fulltext_mysql.php b/phpBB/includes/search/fulltext_mysql.php
index 25d9d47dc6..608392fc15 100644
--- a/phpBB/includes/search/fulltext_mysql.php
+++ b/phpBB/includes/search/fulltext_mysql.php
@@ -35,19 +35,19 @@ class phpbb_search_fulltext_mysql extends phpbb_search_base
protected $split_words = array();
/**
- * Config class object
+ * Config object
* @var phpbb_config
*/
protected $config;
/**
- * DBAL class object
+ * DBAL object
* @var dbal
*/
protected $db;
/**
- * User class object
+ * User object
* @var phpbb_user
*/
protected $user;
diff --git a/phpBB/includes/search/fulltext_native.php b/phpBB/includes/search/fulltext_native.php
index 729ec17a75..7c778c890a 100644
--- a/phpBB/includes/search/fulltext_native.php
+++ b/phpBB/includes/search/fulltext_native.php
@@ -78,19 +78,19 @@ class phpbb_search_fulltext_native extends phpbb_search_base
protected $php_ext;
/**
- * Config class object
+ * Config object
* @var phpbb_config
*/
protected $config;
/**
- * DBAL class object
+ * DBAL object
* @var dbal
*/
protected $db;
/**
- * User class object
+ * User object
* @var phpbb_user
*/
protected $user;
diff --git a/phpBB/includes/search/fulltext_postgres.php b/phpBB/includes/search/fulltext_postgres.php
index cba281777f..414b75f0f1 100644
--- a/phpBB/includes/search/fulltext_postgres.php
+++ b/phpBB/includes/search/fulltext_postgres.php
@@ -60,19 +60,19 @@ class phpbb_search_fulltext_postgres extends phpbb_search_base
protected $phrase_search = false;
/**
- * Config class object
+ * Config object
* @var phpbb_config
*/
protected $config;
/**
- * DBAL class object
+ * DBAL object
* @var dbal
*/
protected $db;
/**
- * User class object
+ * User object
* @var phpbb_user
*/
protected $user;
diff --git a/phpBB/includes/search/fulltext_sphinx.php b/phpBB/includes/search/fulltext_sphinx.php
index 5ff9deef3b..ac42c8d208 100644
--- a/phpBB/includes/search/fulltext_sphinx.php
+++ b/phpBB/includes/search/fulltext_sphinx.php
@@ -54,7 +54,7 @@ class phpbb_search_fulltext_sphinx
protected $indexes;
/**
- * Sphinx searchd client class object
+ * Sphinx searchd client object
* @var SphinxClient
*/
protected $sphinx;
@@ -72,25 +72,25 @@ class phpbb_search_fulltext_sphinx
protected $php_ext;
/**
- * Auth class object
+ * Auth object
* @var phpbb_auth
*/
protected $auth;
/**
- * Config class object
+ * Config object
* @var phpbb_config
*/
protected $config;
/**
- * DBAL class object
+ * DBAL object
* @var dbal
*/
protected $db;
/**
- * Database Tools class object
+ * Database Tools object
* @var phpbb_db_tools
*/
protected $db_tools;
@@ -102,7 +102,7 @@ class phpbb_search_fulltext_sphinx
protected $dbtype;
/**
- * User class object
+ * User object
* @var phpbb_user
*/
protected $user;