Index: abuse.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/abuse/abuse.module,v
retrieving revision 1.34.2.2
diff -b -u -p -r1.34.2.2 abuse.module
--- abuse.module	19 Apr 2008 03:35:42 -0000	1.34.2.2
+++ abuse.module	12 May 2008 15:49:44 -0000
@@ -1,5 +1,5 @@
 <?php
-// $Id: abuse.module,v 1.34.2.2 2008/04/19 03:35:42 jaydub Exp $
+// $Id: abuse.module,v 1.34.2.1 2008/03/28 14:20:09 jaydub Exp $
 
 //Set of content status
 define('ABUSE_LIVE', 0);
@@ -365,12 +365,14 @@ function abuse_comment(&$comment, $op) {
   switch ($op) {
     case 'delete':
       _abuse_perform_delete($comment->cid, 'comment');
+      break;
     case 'update':
       if (_abuse_get_status('comment', $comment['cid']) == 'OK') {
 		if (variable_get('abuse_edit_unflag', 1)) {
           _abuse_perform_delete($comment['cid'], 'comment');
         }
       }
+      break;
   }
 }
 
