From 9053a6a253e2536cc5d87aa6bccc93afb83d9ca2 Mon Sep 17 00:00:00 2001 From: hickert Date: Wed, 28 Jul 2010 09:55:46 +0000 Subject: [PATCH] fixed post action calls git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.6@19184 594d385d-05f5-0310-b6e9-bd551577e9d8 --- .../personal/connectivity/class_intranetAccount.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gosa-plugins/connectivity/personal/connectivity/class_intranetAccount.inc b/gosa-plugins/connectivity/personal/connectivity/class_intranetAccount.inc index db0eef261..6d34d1a94 100644 --- a/gosa-plugins/connectivity/personal/connectivity/class_intranetAccount.inc +++ b/gosa-plugins/connectivity/personal/connectivity/class_intranetAccount.inc @@ -127,7 +127,7 @@ class intranetAccount extends plugin } /* Optionally execute a command after we're done */ - $this->postremove(array("uid"=>$this->uid)); + $this->handle_post_events("remove",array("uid" => $this->uid)); } } @@ -194,7 +194,7 @@ class intranetAccount extends plugin } /* Optionally execute a command after we're done */ - $this->postcreate(array("uid" => $this->uid)); + $this->handle_post_events("add",array("uid" => $this->uid)); } -- 2.30.2