diff options
author | Nathan <exreaction@phpbb.com> | 2012-07-13 22:18:28 -0500 |
---|---|---|
committer | Nathan <exreaction@phpbb.com> | 2012-07-13 22:18:28 -0500 |
commit | f3e6547acf15bc7310b0c1cd7695253ed01f694c (patch) | |
tree | fd53643e438b9757ee85d671fdaac9575bfeb510 /phpBB/includes/acp/acp_inactive.php | |
parent | b45bc27339d03016d47c0247aede8da5ce38a4ee (diff) | |
download | forums-f3e6547acf15bc7310b0c1cd7695253ed01f694c.tar forums-f3e6547acf15bc7310b0c1cd7695253ed01f694c.tar.gz forums-f3e6547acf15bc7310b0c1cd7695253ed01f694c.tar.bz2 forums-f3e6547acf15bc7310b0c1cd7695253ed01f694c.tar.xz forums-f3e6547acf15bc7310b0c1cd7695253ed01f694c.zip |
[ticket/7598] Inactive users action notification (ACP)
When performing an action on users in the ACP Inactive Users, such as activating, deleting, or reminding, trigger_error is now called to give a notification that the action was performed
PHPBB3-7598
Diffstat (limited to 'phpBB/includes/acp/acp_inactive.php')
-rw-r--r-- | phpBB/includes/acp/acp_inactive.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_inactive.php b/phpBB/includes/acp/acp_inactive.php index 78d6a0b2f3..6d14365ce9 100644 --- a/phpBB/includes/acp/acp_inactive.php +++ b/phpBB/includes/acp/acp_inactive.php @@ -136,6 +136,8 @@ class acp_inactive add_log('admin', 'LOG_USER_ACTIVE', $row['username']); 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))); } // For activate we really need to redirect, else a refresh can result in users being deactivated again @@ -159,6 +161,8 @@ 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))); } else { @@ -230,7 +234,8 @@ class acp_inactive $db->sql_query($sql); add_log('admin', 'LOG_INACTIVE_REMIND', implode(', ', $usernames)); - unset($usernames); + + trigger_error(sprintf($user->lang['LOG_INACTIVE_REMIND'], implode(', ', $usernames) . ' ' . adm_back_link($this->u_action))); } $db->sql_freeresult($result); |