diff --git modules/comment/comment.install modules/comment/comment.install
index 1d3b712..0d25d42 100644
--- modules/comment/comment.install
+++ modules/comment/comment.install
@@ -119,16 +119,16 @@ function comment_update_7000() {
  */
 function comment_update_7001() {
   $changes = array(
-    3 => 0,
-    0 => 1,
-    1 => 3,
+    0 => 3,
+    1 => 0,
+    3 => 1,
   );
 
   foreach ($changes as $old => $new) {
-  db_update('comments')
-    ->fields(array('status' => $new))
-    ->condition('status', $old)
-    ->execute();
+    db_update('comments')
+      ->fields(array('status' => $new))
+      ->condition('status', $old)
+      ->execute();
   }
 }
 
