diff options
Diffstat (limited to 'modules/comment/comment.module')
-rw-r--r-- | modules/comment/comment.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module index 86af8f0b1..80802d8d9 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -939,7 +939,7 @@ function comment_delete($cid) { // We'll only delete if the user has confirmed the // deletion using the form in our else clause below. - if (is_object($comment) && is_numeric($comment->cid) && $_POST['edit']['confirm']) { + if (is_object($comment) && is_numeric($comment->cid) && $_POST['confirm']) { drupal_set_message(t('The comment and all its replies have been deleted.')); // Delete comment and its replies. @@ -1003,7 +1003,7 @@ function comment_operations($action = NULL) { * Menu callback; present an administrative comment listing. */ function comment_admin_overview($type = 'new') { - $edit = $_POST['edit']; + $edit = $_POST; if ($edit['operation'] == 'delete') { return comment_multiple_delete_confirm(); @@ -1117,7 +1117,7 @@ function theme_comment_admin_overview($form) { * them. */ function comment_multiple_delete_confirm() { - $edit = $_POST['edit']; + $edit = $_POST; $form['comments'] = array('#prefix' => '<ul>', '#suffix' => '</ul>', '#tree' => TRUE); // array_filter() returns only elements with actual values |