aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathan <exreaction@phpbb.com>2012-07-14 17:40:37 -0500
committerNathan <exreaction@phpbb.com>2012-07-14 17:40:37 -0500
commit97350944e3bcc4042ff030af4eb130facdd253c1 (patch)
treec59c930abb5ea286da1c988d57d263b648767e5c
parentf3e6547acf15bc7310b0c1cd7695253ed01f694c (diff)
downloadforums-97350944e3bcc4042ff030af4eb130facdd253c1.tar
forums-97350944e3bcc4042ff030af4eb130facdd253c1.tar.gz
forums-97350944e3bcc4042ff030af4eb130facdd253c1.tar.bz2
forums-97350944e3bcc4042ff030af4eb130facdd253c1.tar.xz
forums-97350944e3bcc4042ff030af4eb130facdd253c1.zip
[ticket/7598] Use $user->lang['COMMA_SEPARATOR']
PHPBB3-7598
-rw-r--r--phpBB/includes/acp/acp_inactive.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/acp/acp_inactive.php b/phpBB/includes/acp/acp_inactive.php
index 6d14365ce9..f098b772ee 100644
--- a/phpBB/includes/acp/acp_inactive.php
+++ b/phpBB/includes/acp/acp_inactive.php
@@ -137,7 +137,7 @@ class acp_inactive
add_log('user', $row['user_id'], 'LOG_USER_ACTIVE_USER');
}
- trigger_error(sprintf($user->lang['LOG_INACTIVE_ACTIVATE'], implode(', ', $user_affected) . ' ' . adm_back_link($this->u_action)));
+ trigger_error(sprintf($user->lang['LOG_INACTIVE_ACTIVATE'], implode($user->lang['COMMA_SEPARATOR'], $user_affected) . ' ' . adm_back_link($this->u_action)));
}
// For activate we really need to redirect, else a refresh can result in users being deactivated again
@@ -162,7 +162,7 @@ class acp_inactive
add_log('admin', 'LOG_INACTIVE_' . strtoupper($action), implode(', ', $user_affected));
- trigger_error(sprintf($user->lang['LOG_INACTIVE_DELETE'], implode(', ', $user_affected) . ' ' . adm_back_link($this->u_action)));
+ trigger_error(sprintf($user->lang['LOG_INACTIVE_DELETE'], implode($user->lang['COMMA_SEPARATOR'], $user_affected) . ' ' . adm_back_link($this->u_action)));
}
else
{
@@ -235,7 +235,7 @@ class acp_inactive
add_log('admin', 'LOG_INACTIVE_REMIND', implode(', ', $usernames));
- trigger_error(sprintf($user->lang['LOG_INACTIVE_REMIND'], implode(', ', $usernames) . ' ' . adm_back_link($this->u_action)));
+ trigger_error(sprintf($user->lang['LOG_INACTIVE_REMIND'], implode($user->lang['COMMA_SEPARATOR'], $usernames) . ' ' . adm_back_link($this->u_action)));
}
$db->sql_freeresult($result);