aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/index.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2012-07-22 16:25:17 -0700
committerNils Adermann <naderman@naderman.de>2012-07-22 16:25:17 -0700
commit147a125f69683f2f87017bf9870c804a9f09c3d3 (patch)
treeee9fd0d72ebdd5f113c7756a661525f92aff77b4 /phpBB/index.php
parent34d5fa69959803ed853cf0d2a8ed3e1506061622 (diff)
parent577dbf89518521f581117df9575363c3a2e16b5f (diff)
downloadforums-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/index.php')
-rw-r--r--phpBB/index.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/index.php b/phpBB/index.php
index a477a876ad..c13f3c06ab 100644
--- a/phpBB/index.php
+++ b/phpBB/index.php
@@ -104,7 +104,7 @@ while ($row = $db->sql_fetchrow($result))
}
$db->sql_freeresult($result);
-$legend = implode(', ', $legend);
+$legend = implode($user->lang['COMMA_SEPARATOR'], $legend);
// Generate birthday list if required ...
$birthday_list = array();
@@ -157,7 +157,7 @@ $template->assign_vars(array(
'NEWEST_USER' => $user->lang('NEWEST_USER', get_username_string('full', $config['newest_user_id'], $config['newest_username'], $config['newest_user_colour'])),
'LEGEND' => $legend,
- 'BIRTHDAY_LIST' => (empty($birthday_list)) ? '' : implode(', ', $birthday_list),
+ 'BIRTHDAY_LIST' => (empty($birthday_list)) ? '' : implode($user->lang['COMMA_SEPARATOR'], $birthday_list),
'FORUM_IMG' => $user->img('forum_read', 'NO_UNREAD_POSTS'),
'FORUM_UNREAD_IMG' => $user->img('forum_unread', 'UNREAD_POSTS'),