summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: ad474c3)
raw | patch | inline | side by side (parent: ad474c3)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 14 Sep 2006 12:45:50 +0000 (12:45 +0000) | ||
committer | cajus <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 | patch | blob | history |
diff --git a/plugins/personal/mail/class_mailAccount.inc b/plugins/personal/mail/class_mailAccount.inc
index 11a23bb5599ffe84e4ac953edb3071759bf96601..64237e50df3e8c4be760cb36ab357e392ab1fa93 100644 (file)
}
/* Optionally execute a command after we're done */
- $this->handle_post_events("remove");
+ $this->handle_post_events("remove", array('uid'));
}
/* 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'));
}
}