diff options
| author | Nils Adermann <naderman@naderman.de> | 2012-07-22 16:25:17 -0700 |
|---|---|---|
| committer | Nils Adermann <naderman@naderman.de> | 2012-07-22 16:25:17 -0700 |
| commit | 147a125f69683f2f87017bf9870c804a9f09c3d3 (patch) | |
| tree | ee9fd0d72ebdd5f113c7756a661525f92aff77b4 /phpBB/includes/search | |
| parent | 34d5fa69959803ed853cf0d2a8ed3e1506061622 (diff) | |
| parent | 577dbf89518521f581117df9575363c3a2e16b5f (diff) | |
| download | forums-147a125f69683f2f87017bf9870c804a9f09c3d3.tar forums-147a125f69683f2f87017bf9870c804a9f09c3d3.tar.gz forums-147a125f69683f2f87017bf9870c804a9f09c3d3.tar.bz2 forums-147a125f69683f2f87017bf9870c804a9f09c3d3.tar.xz forums-147a125f69683f2f87017bf9870c804a9f09c3d3.zip | |
Merge pull request #914 from EXreaction/ticket/10990
Ticket/10990
Diffstat (limited to 'phpBB/includes/search')
| -rw-r--r-- | phpBB/includes/search/fulltext_native.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/search/fulltext_native.php b/phpBB/includes/search/fulltext_native.php index 3e029c86d0..1e2074b1b1 100644 --- a/phpBB/includes/search/fulltext_native.php +++ b/phpBB/includes/search/fulltext_native.php @@ -334,7 +334,7 @@ class phpbb_search_fulltext_native extends phpbb_search_base // throw an error if we shall not ignore unexistant words else if (!$ignore_no_id && sizeof($non_common_words)) { - trigger_error(sprintf($user->lang['WORDS_IN_NO_POST'], implode(', ', $non_common_words))); + trigger_error(sprintf($user->lang['WORDS_IN_NO_POST'], implode($user->lang['COMMA_SEPARATOR'], $non_common_words))); } unset($non_common_words); } |
