From 7c3cbc07cf708865a8ab45547e5a8e70bb82196d Mon Sep 17 00:00:00 2001 From: Dhruv Date: Sun, 19 Aug 2012 13:13:03 +0530 Subject: [PATCH] [ticket/11050] multi sentences separated by period in docblocks Starting of each sentence should be capitalized. PHPBB3-11050 --- phpBB/includes/search/fulltext_mysql.php | 4 ++-- phpBB/includes/search/fulltext_native.php | 4 ++-- phpBB/includes/search/fulltext_postgres.php | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/phpBB/includes/search/fulltext_mysql.php b/phpBB/includes/search/fulltext_mysql.php index 3edf732b74..2b136f3f79 100644 --- a/phpBB/includes/search/fulltext_mysql.php +++ b/phpBB/includes/search/fulltext_mysql.php @@ -65,8 +65,8 @@ class phpbb_search_fulltext_mysql extends phpbb_search_base public $search_query; /** - * Contains common words - * common words are words with length less/more than min/max length + * Contains common words. + * Common words are words with length less/more than min/max length * @var array */ public $common_words = array(); diff --git a/phpBB/includes/search/fulltext_native.php b/phpBB/includes/search/fulltext_native.php index 7c778c890a..d7c9b009dd 100644 --- a/phpBB/includes/search/fulltext_native.php +++ b/phpBB/includes/search/fulltext_native.php @@ -41,8 +41,8 @@ class phpbb_search_fulltext_native extends phpbb_search_base public $search_query; /** - * Contains common words - * common words are words with length less/more than min/max length + * Contains common words. + * Common words are words with length less/more than min/max length * @var array */ public $common_words = array(); diff --git a/phpBB/includes/search/fulltext_postgres.php b/phpBB/includes/search/fulltext_postgres.php index 7863d070d4..205a053451 100644 --- a/phpBB/includes/search/fulltext_postgres.php +++ b/phpBB/includes/search/fulltext_postgres.php @@ -53,7 +53,7 @@ class phpbb_search_fulltext_postgres extends phpbb_search_base protected $tsearch_query; /** - * True if phrase search is supported + * True if phrase search is supported. * PostgreSQL fulltext currently doesn't support it * @var boolean */ @@ -84,8 +84,8 @@ class phpbb_search_fulltext_postgres extends phpbb_search_base public $search_query; /** - * Contains common words - * common words are words with length less/more than min/max length + * Contains common words. + * Common words are words with length less/more than min/max length * @var array */ public $common_words = array();