aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/search/fulltext_native.php
diff options
context:
space:
mode:
authorNathan Guse <nathaniel.guse@gmail.com>2012-07-22 14:48:39 -0500
committerNathan Guse <nathaniel.guse@gmail.com>2012-07-22 14:48:39 -0500
commit577dbf89518521f581117df9575363c3a2e16b5f (patch)
treee6f949441cb503eaecf0ce8e33f9ee29657a0da8 /phpBB/includes/search/fulltext_native.php
parenteb5e33a7683e7eebaa5c180c00693d5d061c057c (diff)
downloadforums-577dbf89518521f581117df9575363c3a2e16b5f.tar
forums-577dbf89518521f581117df9575363c3a2e16b5f.tar.gz
forums-577dbf89518521f581117df9575363c3a2e16b5f.tar.bz2
forums-577dbf89518521f581117df9575363c3a2e16b5f.tar.xz
forums-577dbf89518521f581117df9575363c3a2e16b5f.zip
[ticket/10990] Changes for develop
PHPBB3-10990
Diffstat (limited to 'phpBB/includes/search/fulltext_native.php')
-rw-r--r--phpBB/includes/search/fulltext_native.php2
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);
}