1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-10-05 04:01:49 +02:00

[ticket/10990] Do not use comma separator when storing it as a log.

PHPBB3-10990
This commit is contained in:
Nathan Guse
2012-07-22 14:39:10 -05:00
parent 67665f5957
commit eb5e33a768
6 changed files with 10 additions and 10 deletions

View File

@@ -439,7 +439,7 @@ function copy_forum_permissions($src_forum_id, $dest_forum_ids, $clear_dest_perm
if ($add_log)
{
add_log('admin', 'LOG_FORUM_COPIED_PERMISSIONS', $src_forum_name, implode($user->lang['COMMA_SEPARATOR'], $dest_forum_names));
add_log('admin', 'LOG_FORUM_COPIED_PERMISSIONS', $src_forum_name, implode(', ', $dest_forum_names));
}
$db->sql_transaction('commit');