aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/index.php
diff options
context:
space:
mode:
authorNathan <exreaction@phpbb.com>2012-07-14 18:12:57 -0500
committerNathan Guse <nathaniel.guse@gmail.com>2012-07-22 14:32:03 -0500
commit67665f59577092badf7eb0b5585e5ae39c52c8da (patch)
tree93f6b91eef6b0f4cbb6bdb748cba089b5559a94c /phpBB/index.php
parent841ea0e494504400c798faa6cc860dd1179e1004 (diff)
downloadforums-67665f59577092badf7eb0b5585e5ae39c52c8da.tar
forums-67665f59577092badf7eb0b5585e5ae39c52c8da.tar.gz
forums-67665f59577092badf7eb0b5585e5ae39c52c8da.tar.bz2
forums-67665f59577092badf7eb0b5585e5ae39c52c8da.tar.xz
forums-67665f59577092badf7eb0b5585e5ae39c52c8da.zip
[ticket/10990] Use $user->lang['COMMA_SEPARATOR'] when appropriate
PHPBB3-10990
Diffstat (limited to 'phpBB/index.php')
-rw-r--r--phpBB/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/index.php b/phpBB/index.php
index a477a876ad..2118a39b5d 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();