diff options
| author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-07-22 14:39:10 -0500 |
|---|---|---|
| committer | Nathan Guse <nathaniel.guse@gmail.com> | 2012-07-22 14:39:10 -0500 |
| commit | eb5e33a7683e7eebaa5c180c00693d5d061c057c (patch) | |
| tree | 85d393cc8777377731b7dd9844f13e95f0a1d623 /phpBB/includes/acp/acp_attachments.php | |
| parent | 67665f59577092badf7eb0b5585e5ae39c52c8da (diff) | |
| download | forums-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_attachments.php')
| -rw-r--r-- | phpBB/includes/acp/acp_attachments.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/acp/acp_attachments.php b/phpBB/includes/acp/acp_attachments.php index 18a685c9b1..af22ed57e8 100644 --- a/phpBB/includes/acp/acp_attachments.php +++ b/phpBB/includes/acp/acp_attachments.php @@ -916,7 +916,7 @@ class acp_attachments WHERE ' . $db->sql_in_set('attach_id', array_keys($delete_files)); $db->sql_query($sql); - add_log('admin', 'LOG_ATTACH_ORPHAN_DEL', implode($user->lang['COMMA_SEPARATOR'], $delete_files)); + add_log('admin', 'LOG_ATTACH_ORPHAN_DEL', implode(', ', $delete_files)); $notify[] = sprintf($user->lang['LOG_ATTACH_ORPHAN_DEL'], implode($user->lang['COMMA_SEPARATOR'], $delete_files)); } @@ -1470,7 +1470,7 @@ class acp_attachments // Grab the list of entries $ips = request_var('ips', ''); $ip_list = array_unique(explode("\n", $ips)); - $ip_list_log = implode($user->lang['COMMA_SEPARATOR'], $ip_list); + $ip_list_log = implode(', ', $ip_list); $ip_exclude = (int) $request->variable('ipexclude', false, false, phpbb_request_interface::POST); |
