aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/search
diff options
context:
space:
mode:
authorDhruv <dhruv.goel92@gmail.com>2012-08-19 13:04:34 +0530
committerDhruv <dhruv.goel92@gmail.com>2012-11-09 15:54:38 +0100
commit6ae64f1c1e37ff2b4de488d6f5264e581b0ac6cf (patch)
treed05971ac8c6308878beee8319178d13d4b209644 /phpBB/includes/search
parentb7dae379d53a81a1197e703aced19a6206985054 (diff)
downloadforums-6ae64f1c1e37ff2b4de488d6f5264e581b0ac6cf.tar
forums-6ae64f1c1e37ff2b4de488d6f5264e581b0ac6cf.tar.gz
forums-6ae64f1c1e37ff2b4de488d6f5264e581b0ac6cf.tar.bz2
forums-6ae64f1c1e37ff2b4de488d6f5264e581b0ac6cf.tar.xz
forums-6ae64f1c1e37ff2b4de488d6f5264e581b0ac6cf.zip
[ticket/11050] fix split words doc block language
PHPBB3-11050
Diffstat (limited to 'phpBB/includes/search')
-rw-r--r--phpBB/includes/search/fulltext_mysql.php2
-rw-r--r--phpBB/includes/search/fulltext_postgres.php2
-rw-r--r--phpBB/includes/search/fulltext_sphinx.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/search/fulltext_mysql.php b/phpBB/includes/search/fulltext_mysql.php
index 608392fc15..3edf732b74 100644
--- a/phpBB/includes/search/fulltext_mysql.php
+++ b/phpBB/includes/search/fulltext_mysql.php
@@ -29,7 +29,7 @@ class phpbb_search_fulltext_mysql extends phpbb_search_base
protected $stats = array();
/**
- * Holds the words entered by user splitted in array
+ * Holds the words entered by user, obtained by splitting the entered query on whitespace
* @var array
*/
protected $split_words = array();
diff --git a/phpBB/includes/search/fulltext_postgres.php b/phpBB/includes/search/fulltext_postgres.php
index 414b75f0f1..7863d070d4 100644
--- a/phpBB/includes/search/fulltext_postgres.php
+++ b/phpBB/includes/search/fulltext_postgres.php
@@ -29,7 +29,7 @@ class phpbb_search_fulltext_postgres extends phpbb_search_base
protected $stats = array();
/**
- * Holds the words entered by user splitted in array
+ * Holds the words entered by user, obtained by splitting the entered query on whitespace
* @var array
*/
protected $split_words = array();
diff --git a/phpBB/includes/search/fulltext_sphinx.php b/phpBB/includes/search/fulltext_sphinx.php
index ac42c8d208..e52be6a0b7 100644
--- a/phpBB/includes/search/fulltext_sphinx.php
+++ b/phpBB/includes/search/fulltext_sphinx.php
@@ -35,7 +35,7 @@ class phpbb_search_fulltext_sphinx
protected $stats = array();
/**
- * Holds the words entered by user splitted in array
+ * Holds the words entered by user, obtained by splitting the entered query on whitespace
* @var array
*/
protected $split_words = array();