aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acp/acp_bots.php
diff options
context:
space:
mode:
authorNathan Guse <nathaniel.guse@gmail.com>2012-07-22 14:39:10 -0500
committerNathan Guse <nathaniel.guse@gmail.com>2012-07-22 14:39:10 -0500
commiteb5e33a7683e7eebaa5c180c00693d5d061c057c (patch)
tree85d393cc8777377731b7dd9844f13e95f0a1d623 /phpBB/includes/acp/acp_bots.php
parent67665f59577092badf7eb0b5585e5ae39c52c8da (diff)
downloadforums-eb5e33a7683e7eebaa5c180c00693d5d061c057c.tar
forums-eb5e33a7683e7eebaa5c180c00693d5d061c057c.tar.gz
forums-eb5e33a7683e7eebaa5c180c00693d5d061c057c.tar.bz2
forums-eb5e33a7683e7eebaa5c180c00693d5d061c057c.tar.xz
forums-eb5e33a7683e7eebaa5c180c00693d5d061c057c.zip
[ticket/10990] Do not use comma separator when storing it as a log.
PHPBB3-10990
Diffstat (limited to 'phpBB/includes/acp/acp_bots.php')
-rw-r--r--phpBB/includes/acp/acp_bots.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_bots.php b/phpBB/includes/acp/acp_bots.php
index af625e1da3..d53971ed08 100644
--- a/phpBB/includes/acp/acp_bots.php
+++ b/phpBB/includes/acp/acp_bots.php
@@ -123,7 +123,7 @@ class acp_bots
$cache->destroy('_bots');
- add_log('admin', 'LOG_BOT_DELETE', implode($user->lang['COMMA_SEPARATOR'], $bot_name_ary));
+ add_log('admin', 'LOG_BOT_DELETE', implode(', ', $bot_name_ary));
trigger_error($user->lang['BOT_DELETED'] . adm_back_link($this->u_action));
}
else