aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acp
diff options
context:
space:
mode:
authorHenry Sudhof <kellanved@phpbb.com>2007-10-05 16:22:14 +0000
committerHenry Sudhof <kellanved@phpbb.com>2007-10-05 16:22:14 +0000
commit9a8ff8563e9b23884806b72a6603800ac12e1411 (patch)
treea3d9f285823751615a96c73c26541b84f4cc679c /phpBB/includes/acp
parent82abcbf856da10c4db1abb9ef12127cb235abf58 (diff)
downloadforums-9a8ff8563e9b23884806b72a6603800ac12e1411.tar
forums-9a8ff8563e9b23884806b72a6603800ac12e1411.tar.gz
forums-9a8ff8563e9b23884806b72a6603800ac12e1411.tar.bz2
forums-9a8ff8563e9b23884806b72a6603800ac12e1411.tar.xz
forums-9a8ff8563e9b23884806b72a6603800ac12e1411.zip
And one more confirm box.
git-svn-id: file:///svn/phpbb/trunk@8149 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acp')
-rwxr-xr-xphpBB/includes/acp/acp_inactive.php25
1 files changed, 19 insertions, 6 deletions
diff --git a/phpBB/includes/acp/acp_inactive.php b/phpBB/includes/acp/acp_inactive.php
index b440c5cbc3..73872c9b72 100755
--- a/phpBB/includes/acp/acp_inactive.php
+++ b/phpBB/includes/acp/acp_inactive.php
@@ -53,7 +53,7 @@ class acp_inactive
if ($submit && sizeof($mark))
{
- if (!check_form_key($form_key))
+ if ($action !== 'delete' && !check_form_key($form_key))
{
trigger_error($user->lang['FORM_INVALID'] . adm_back_link($this->u_action), E_USER_WARNING);
}
@@ -124,14 +124,27 @@ class acp_inactive
}
else if ($action == 'delete')
{
- if (!$auth->acl_get('a_userdel'))
+ if (confirm_box(true))
{
- trigger_error($user->lang['NO_AUTH_OPERATION'] . adm_back_link($this->u_action), E_USER_WARNING);
- }
+ if (!$auth->acl_get('a_userdel'))
+ {
+ trigger_error($user->lang['NO_AUTH_OPERATION'] . adm_back_link($this->u_action), E_USER_WARNING);
+ }
- foreach ($mark as $user_id)
+ foreach ($mark as $user_id)
+ {
+ user_delete('retain', $user_id, $user_affected[$user_id]);
+ }
+ }
+ else
{
- user_delete('retain', $user_id, $user_affected[$user_id]);
+ $s_hidden_fields = array(
+ 'mode' => $mode,
+ 'action' => $action,
+ 'mark' => $mark,
+ 'submit' => 1,
+ );
+ confirm_box(false, $user->lang['CONFIRM_OPERATION'], build_hidden_fields($s_hidden_fields));
}
}