From 0556959a6af3868fe17093840a46340105483759 Mon Sep 17 00:00:00 2001 From: Dhruv Date: Mon, 20 Aug 2012 00:58:41 +0530 Subject: [PATCH] [ticket/11050] fix min/max length docblock language PHPBB3-11050 --- phpBB/includes/search/fulltext_mysql.php | 2 +- phpBB/includes/search/fulltext_native.php | 2 +- 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();