From 1f290590142f9b653d183bf2b3d598dfbad3d402 Mon Sep 17 00:00:00 2001 From: hickert Date: Wed, 28 Jul 2010 09:55:49 +0000 Subject: [PATCH] fixed post action calls git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.6@19185 594d385d-05f5-0310-b6e9-bd551577e9d8 --- .../connectivity/openxchange/class_oxchangeAccount.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gosa-plugins/openxchange/personal/connectivity/openxchange/class_oxchangeAccount.inc b/gosa-plugins/openxchange/personal/connectivity/openxchange/class_oxchangeAccount.inc index 6977ca77c..b6af27fd7 100644 --- a/gosa-plugins/openxchange/personal/connectivity/openxchange/class_oxchangeAccount.inc +++ b/gosa-plugins/openxchange/personal/connectivity/openxchange/class_oxchangeAccount.inc @@ -221,7 +221,7 @@ class oxchangeAccount 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)); /* Finally remove data from postgresql server */ foreach ($sqldeluser as $sqls){ @@ -331,7 +331,7 @@ class oxchangeAccount 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)); if($needupdate){ $ldap->create_missing_trees("ou=addr,".$this->dn); -- 2.30.2