fix #8131 - chinese translations
[Pman.Core] / mysql / core_notify_trigger_after_update.sql
index 71f6548..07bdc83 100644 (file)
@@ -6,15 +6,15 @@ DELIMITER $$
  
 
 CREATE TRIGGER core_notify_trigger_after_update
-            BEFORE UPDATE ON core_notify
+            AFTER UPDATE ON core_notify
         FOR EACH ROW
         BEGIN
             -- make sure that act_start does not get modified if sent is set.
-            IF OLD.sent IS NOT NULL AND  NEW.act_start != OLD.act_start THEN
-                  UPDATE `Error: Can not update core_notify act_start after its set` SET x = 1;
+            IF (OLD.sent IS NOT NULL AND  OLD.sent > '1500-01-01 00:00:00')
+                AND  ( NEW.act_start != OLD.act_start  OR NEW.act_when != OLD.act_when )  THEN
+                  UPDATE `Error: Can not update core_notify action dates  after its sent` SET x = 1;
             END IF;
         END;
-
 $$