From a51b0b0227a3aaebb994e22fb7825fe01dd40381 Mon Sep 17 00:00:00 2001 From: cajus Date: Thu, 14 Sep 2006 12:45:50 +0000 Subject: [PATCH] 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 --- plugins/personal/mail/class_mailAccount.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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')); } } -- 2.30.2