From: cajus Date: Thu, 14 Sep 2006 12:45:50 +0000 (+0000) Subject: Added 'uid' to the list of attributes X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=a51b0b0227a3aaebb994e22fb7825fe01dd40381;p=gosa.git Added 'uid' to the list of attributes git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@4665 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/plugins/personal/mail/class_mailAccount.inc b/plugins/personal/mail/class_mailAccount.inc index 11a23bb55..64237e50d 100644 --- a/plugins/personal/mail/class_mailAccount.inc +++ b/plugins/personal/mail/class_mailAccount.inc @@ -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')); } }