diff options
| author | Dhruv <dhruv.goel92@gmail.com> | 2012-08-20 00:58:41 +0530 |
|---|---|---|
| committer | Dhruv <dhruv.goel92@gmail.com> | 2012-11-09 15:54:40 +0100 |
| commit | 0556959a6af3868fe17093840a46340105483759 (patch) | |
| tree | 9495b17455afd26f43e542fc60e3c8bf0012d666 /phpBB | |
| parent | 7c3cbc07cf708865a8ab45547e5a8e70bb82196d (diff) | |
| download | forums-0556959a6af3868fe17093840a46340105483759.tar forums-0556959a6af3868fe17093840a46340105483759.tar.gz forums-0556959a6af3868fe17093840a46340105483759.tar.bz2 forums-0556959a6af3868fe17093840a46340105483759.tar.xz forums-0556959a6af3868fe17093840a46340105483759.zip | |
[ticket/11050] fix min/max length docblock language
PHPBB3-11050
Diffstat (limited to 'phpBB')
| -rw-r--r-- | phpBB/includes/search/fulltext_mysql.php | 2 | ||||
| -rw-r--r-- | phpBB/includes/search/fulltext_native.php | 2 | ||||
| -rw-r--r-- | phpBB/includes/search/fulltext_postgres.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/search/fulltext_mysql.php b/phpBB/includes/search/fulltext_mysql.php index 2b136f3f79..0cd0f99695 100644 --- a/phpBB/includes/search/fulltext_mysql.php +++ b/phpBB/includes/search/fulltext_mysql.php @@ -53,7 +53,7 @@ class phpbb_search_fulltext_mysql extends phpbb_search_base protected $user; /** - * Associative array stores the min and max length + * Associative array stores the min and max word length to be searched * @var array */ public $word_length = array(); diff --git a/phpBB/includes/search/fulltext_native.php b/phpBB/includes/search/fulltext_native.php index d7c9b009dd..5aa718a6e6 100644 --- a/phpBB/includes/search/fulltext_native.php +++ b/phpBB/includes/search/fulltext_native.php @@ -29,7 +29,7 @@ class phpbb_search_fulltext_native extends phpbb_search_base protected $stats = array(); /** - * Associative array stores the min and max length + * Associative array stores the min and max word length to be searched * @var array */ public $word_length = array(); diff --git a/phpBB/includes/search/fulltext_postgres.php b/phpBB/includes/search/fulltext_postgres.php index 205a053451..50546edec3 100644 --- a/phpBB/includes/search/fulltext_postgres.php +++ b/phpBB/includes/search/fulltext_postgres.php @@ -91,7 +91,7 @@ class phpbb_search_fulltext_postgres extends phpbb_search_base public $common_words = array(); /** - * Associative array stores the min and max length + * Associative array stores the min and max word length to be searched * @var array */ public $word_length = array(); |
