[ticket/11050] fix split words doc block language

PHPBB3-11050
This commit is contained in:
Dhruv 2012-08-19 13:04:34 +05:30
parent b7dae379d5
commit 6ae64f1c1e
3 changed files with 3 additions and 3 deletions

View file

@ -29,7 +29,7 @@ class phpbb_search_fulltext_mysql extends phpbb_search_base
protected $stats = array(); 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 * @var array
*/ */
protected $split_words = array(); protected $split_words = array();

View file

@ -29,7 +29,7 @@ class phpbb_search_fulltext_postgres extends phpbb_search_base
protected $stats = array(); 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 * @var array
*/ */
protected $split_words = array(); protected $split_words = array();

View file

@ -35,7 +35,7 @@ class phpbb_search_fulltext_sphinx
protected $stats = array(); 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 * @var array
*/ */
protected $split_words = array(); protected $split_words = array();