Code

Fixed generic/connectivity kolabAccount
[gosa.git] / plugins / personal / connectivity / class_phpgwAccount.inc
index 4e79a2f12b9a2b518a0c7834b88b431baa5892c2..37162cea9c254e289205dc98e7d8b5315095db7a 100644 (file)
@@ -66,8 +66,10 @@ class phpgwAccount extends plugin
       $ldap->cd($this->dn);
       @DEBUG (DEBUG_LDAP, __LINE__, __FUNCTION__, __FILE__,
           $this->attributes, "Save");
-      $ldap->modify($this->attrs);
-      show_ldap_error($ldap->get_error());
+      $this->cleanup();
+      $ldap->modify ($this->attrs); 
+
+      show_ldap_error($ldap->get_error(), sprintf(_("Removing of user/PHPgw account with dn '%s' failed."),$this->dn));
 
       /* Optionally execute a command after we're done */
       $this->handle_post_events('remove');
@@ -107,8 +109,10 @@ class phpgwAccount extends plugin
       /* Write back to ldap */
       $ldap= $this->config->get_ldap_link();
       $ldap->cd($this->dn);
-      $ldap->modify($this->attrs);
-      show_ldap_error($ldap->get_error());
+      $this->cleanup();
+      $ldap->modify ($this->attrs); 
+
+      show_ldap_error($ldap->get_error(), sprintf(_("Saving of user/PHPgw account with dn '%s' failed."),$this->dn));
 
       /* Optionally execute a command after we're done */
       if ($this->initially_was_account == $this->is_account){