summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: a02f0da)
raw | patch | inline | side by side (parent: a02f0da)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 10 Feb 2006 15:40:52 +0000 (15:40 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 10 Feb 2006 15:40:52 +0000 (15:40 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@2662 594d385d-05f5-0310-b6e9-bd551577e9d8
diff --git a/plugins/addons/addressbook/class_addressbook.inc b/plugins/addons/addressbook/class_addressbook.inc
index 162a2f965784c77161844713196ae763dc61d319..f116acfe721ac8c314781d6b9ae401b5740b8178 100644 (file)
/* Finally write data with selected 'mode' */
$ldap->cd ($this->dn);
+ $this->cleanup();
$ldap->$mode ($this->attrs);
if (show_ldap_error($ldap->get_error())){
return (1);
diff --git a/plugins/admin/groups/class_groupGeneric.inc b/plugins/admin/groups/class_groupGeneric.inc
index 2dde3c6ecc37f415ea89c2f9f8e90565186d3386..188b6b6061909ff26a74ebd30f4cc383982d07f8 100644 (file)
/* Write back to ldap */
$ldap->cd($this->dn);
+ $this->cleanup();
$ldap->$mode($this->attrs);
$ret= 0;
index 136562a6308b0383e877bc82469b7847e8873365..311f1746e41325b76bbbe0ec3eccf5a21f6a02d0 100644 (file)
/* Write back to ldap */
$ldap->cd($this->dn);
+ $this->cleanup();
$ldap->$mode($this->attrs);
/* Trigger post signal */
index 87c65e76539247f46fcc64763d87c134a7a76cc3..9d317fa69207185710eae94dec6953bdcdeb4197 100644 (file)
/* Perform LDAP action */
$ldap->cd($this->dn);
+ $this->cleanup();
$ldap->$mode($this->attrs);
show_ldap_error($ldap->get_error());
diff --git a/plugins/personal/environment/class_environment.inc b/plugins/personal/environment/class_environment.inc
index 3c97e19a68e9332f3bae7a606594e429bad10162..bea0e0e457245ab2b6a38cf95b2cec6fecf62fb6 100644 (file)
}
$ldap->cd($this->dn);
+ $this->cleanup();
$ldap->$mode($this->attrs);
if($ldap->get_error()!="Success"){
print_red($ldap->get_error());