diff options
| author | Andreas Fischer <bantu@phpbb.com> | 2012-11-10 00:30:46 +0100 |
|---|---|---|
| committer | Andreas Fischer <bantu@phpbb.com> | 2012-11-10 00:38:25 +0100 |
| commit | f5b3adb29653ed215de182962917501a1e36a020 (patch) | |
| tree | a1d5b0707f76be8acd43e2ea3a48764c9d735085 /phpBB/includes/search/fulltext_mysql.php | |
| parent | d87904ae76e0782f5726cfcccf3d897bca043694 (diff) | |
| download | forums-f5b3adb29653ed215de182962917501a1e36a020.tar forums-f5b3adb29653ed215de182962917501a1e36a020.tar.gz forums-f5b3adb29653ed215de182962917501a1e36a020.tar.bz2 forums-f5b3adb29653ed215de182962917501a1e36a020.tar.xz forums-f5b3adb29653ed215de182962917501a1e36a020.zip | |
[ticket/10780] Use L_COLON on search backend ACP pages.
PHPBB3-10780
Diffstat (limited to 'phpBB/includes/search/fulltext_mysql.php')
| -rw-r--r-- | phpBB/includes/search/fulltext_mysql.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/search/fulltext_mysql.php b/phpBB/includes/search/fulltext_mysql.php index 700b8695dc..58a4dd7d6a 100644 --- a/phpBB/includes/search/fulltext_mysql.php +++ b/phpBB/includes/search/fulltext_mysql.php @@ -905,11 +905,11 @@ class phpbb_search_fulltext_mysql extends phpbb_search_base { $tpl = ' <dl> - <dt><label>' . $this->user->lang['MIN_SEARCH_CHARS'] . ':</label><br /><span>' . $this->user->lang['FULLTEXT_MYSQL_MIN_SEARCH_CHARS_EXPLAIN'] . '</span></dt> + <dt><label>' . $this->user->lang['MIN_SEARCH_CHARS'] . $this->user->lang['COLON'] . '</label><br /><span>' . $this->user->lang['FULLTEXT_MYSQL_MIN_SEARCH_CHARS_EXPLAIN'] . '</span></dt> <dd>' . $this->config['fulltext_mysql_min_word_len'] . '</dd> </dl> <dl> - <dt><label>' . $this->user->lang['MAX_SEARCH_CHARS'] . ':</label><br /><span>' . $this->user->lang['FULLTEXT_MYSQL_MAX_SEARCH_CHARS_EXPLAIN'] . '</span></dt> + <dt><label>' . $this->user->lang['MAX_SEARCH_CHARS'] . $this->user->lang['COLON'] . '</label><br /><span>' . $this->user->lang['FULLTEXT_MYSQL_MAX_SEARCH_CHARS_EXPLAIN'] . '</span></dt> <dd>' . $this->config['fulltext_mysql_max_word_len'] . '</dd> </dl> '; |
