Code

Added 'uid' to the list of attributes
authorcajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 14 Sep 2006 12:45:50 +0000 (12:45 +0000)
committercajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 14 Sep 2006 12:45:50 +0000 (12:45 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@4665 594d385d-05f5-0310-b6e9-bd551577e9d8

plugins/personal/mail/class_mailAccount.inc

index 11a23bb5599ffe84e4ac953edb3071759bf96601..64237e50df3e8c4be760cb36ab357e392ab1fa93 100644 (file)
@@ -658,7 +658,7 @@ class mailAccount extends plugin
     }
 
     /* Optionally execute a command after we're done */
-    $this->handle_post_events("remove");
+    $this->handle_post_events("remove", array('uid'));
   }
 
 
@@ -779,10 +779,10 @@ class mailAccount extends plugin
     /* Optionally execute a command after we're done */
     if ($this->initially_was_account == $this->is_account){
       if ($this->is_modified){
-        $this->handle_post_events("modify");
+        $this->handle_post_events("modify", array('uid'));
       }
     } else {
-      $this->handle_post_events("add");
+      $this->handle_post_events("add", array('uid'));
     }
 
   }