Merge pull request #3353 from eileenmcnaughton/comments-extra
[civicrm-core.git] / sql / trigger.mysql
index 9c98e3e04a3e6803e88c6aef2d7b45cb74a5dedd..1c5c6babf57103cd8b16bc08e0e4cbcdb263c1cf 100644 (file)
@@ -31,12 +31,12 @@ BEGIN
   -- we delete the corresponding entity_id/entity_table entries
   -- from all the linked tables (note, log etc)
   DELETE FROM civicrm_note
-        WHERE entity_id    = OLD.id 
+        WHERE entity_id    = OLD.id
           AND entity_table = 'civicrm_contact';
   DELETE FROM civicrm_log
         WHERE entity_id    = OLD.id
           AND entity_table = 'civicrm_contact';
-  DELETE FROM civicrm_task_status 
+  DELETE FROM civicrm_task_status
         WHERE responsible_entity_id    = OLD.id
           AND responsible_entity_table = 'civicrm_contact';