diff options
| author | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-08-01 14:39:50 +0000 |
|---|---|---|
| committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-08-01 14:39:50 +0000 |
| commit | 0873f243cae32e0dc639fe6e3413dd2b7f820ee0 (patch) | |
| tree | 9a6ad48f156e43aeefaed01b44d6a79c45f9598f /phpBB/admin/admin_prune_users.php | |
| parent | 3aceae9272691700457b2ae67521258c9186eaf0 (diff) | |
| download | forums-0873f243cae32e0dc639fe6e3413dd2b7f820ee0.tar forums-0873f243cae32e0dc639fe6e3413dd2b7f820ee0.tar.gz forums-0873f243cae32e0dc639fe6e3413dd2b7f820ee0.tar.bz2 forums-0873f243cae32e0dc639fe6e3413dd2b7f820ee0.tar.xz forums-0873f243cae32e0dc639fe6e3413dd2b7f820ee0.zip | |
Often helps to send the required variables to the page that actually makes use of them ...
git-svn-id: file:///svn/phpbb/trunk@2801 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/admin/admin_prune_users.php')
| -rw-r--r-- | phpBB/admin/admin_prune_users.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/admin/admin_prune_users.php b/phpBB/admin/admin_prune_users.php index f8769701fd..41435503f0 100644 --- a/phpBB/admin/admin_prune_users.php +++ b/phpBB/admin/admin_prune_users.php @@ -67,7 +67,7 @@ if ( isset($HTTP_POST_VARS['prune']) ) { if ( empty($HTTP_POST_VARS['confirm']) ) { - $values = array('prune', 'deactivate', 'delete', 'users', 'username', 'email', 'joined_select', 'active_select', 'count_select', 'joined', 'active', 'count'); + $values = array('prune', 'deactivate', 'delete', 'users', 'username', 'email', 'joined_select', 'active_select', 'count_select', 'joined', 'active', 'count', 'deleteposts'); $l_message = '<form method="post" action="admin_prune_users.' . $phpEx . $SID . '">' . $lang['Confirm_prune_users'] . '<br /><br /><input class="liteoption" type="submit" name="yes" value="' . $lang['Yes'] . '" /> <input class="liteoption" type="submit" name="no" value="' . $lang['No'] . '" /><input type="hidden" name="confirm" value="1" />'; @@ -153,7 +153,7 @@ if ( isset($HTTP_POST_VARS['prune']) ) if ( $where_sql != '' ) { $sql = ''; - if ( !empty($HTTP_POST_VARS['prune']) ) + if ( !empty($HTTP_POST_VARS['delete']) ) { if ( !empty($HTTP_POST_VARS['deleteposts']) ) { |
