Index: modules/comment.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/comment.module,v
retrieving revision 1.426
diff -u -r1.426 comment.module
--- modules/comment.module	1 Feb 2006 14:04:50 -0000	1.426
+++ modules/comment.module	4 Feb 2006 00:58:15 -0000
@@ -952,7 +952,6 @@
  * Menu callback; present an administrative comment listing.
  */
 function comment_admin_overview($type = 'new') {
-  global $form_values;
   $edit = $_POST['edit'];
 
   if ($edit['operation'] == 'delete') {
@@ -993,13 +992,7 @@
   }
   $form['comments'] = array('#type' => 'checkboxes', '#options' => $comments);
   $form['pager'] = array('#value' => theme('pager', NULL, 50, 0));
-
-  $form['#method'] = 'post';
-  $form['#action'] = url('admin/comment/action');
-
-  $output = drupal_get_form('comment_admin_overview', $form);
-
-  return $output;
+  return drupal_get_form('comment_admin_overview', $form);
 }
 
 /**
