1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/11050] multi sentences separated by period in docblocks

Starting of each sentence should be capitalized.

PHPBB3-11050
This commit is contained in:
Dhruv
2012-08-19 13:13:03 +05:30
parent 5a2cbc2417
commit 7c3cbc07cf
3 changed files with 7 additions and 7 deletions

View File

@@ -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();

View File

@@ -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();

View File

@@ -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();