summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: fc35792)
raw | patch | inline | side by side (parent: fc35792)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 29 Jun 2006 11:41:40 +0000 (11:41 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 29 Jun 2006 11:41:40 +0000 (11:41 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@3991 594d385d-05f5-0310-b6e9-bd551577e9d8
index 01e05a0de99502f9486a25b280585a181a79d4fe..54a91713b97ec4ba917fefb362d8bd7a679f8272 100644 (file)
$ldap->cd($this->dn);
$this->cleanup();
$ldap->modify ($this->attrs);
- show_ldap_error($ldap->get_error(), _("Removing ACL information failed"));
+ show_ldap_error($ldap->get_error(), sprintf(_("Removing of groups/acl with dn '%s' failed."),$this->dn));
}
$this->cleanup();
$ldap->modify ($this->attrs);
- show_ldap_error($ldap->get_error(), _("Saving ACL information failed"));
+ show_ldap_error($ldap->get_error(), sprintf(_("Saving of groups/acl with dn '%s' failed."),$this->dn));
}
diff --git a/plugins/admin/groups/class_groupApplication.inc b/plugins/admin/groups/class_groupApplication.inc
index 80839ce16b81f0a2df4529fb66be18e9966f0a56..4f036b494812a4776cf45d3dbe4fa4005f7b5ff1 100644 (file)
$ldap->modify ($this->attrs);
- show_ldap_error($ldap->get_error(), _("Removing application information failed"));
+ show_ldap_error($ldap->get_error(), sprintf(_("Removing of groups/applications with dn '%s' failed."),$this->dn));
/* Optionally execute a command after we're done */
$this->handle_post_events("remove");
$this->cleanup();
$ldap->modify ($this->attrs);
- show_ldap_error($ldap->get_error(), _("Saving application information failed"));
+ show_ldap_error($ldap->get_error(), sprintf(_("Saving of groups/applications with dn '%s' failed."),$this->dn));
/* Optionally execute a command after we're done */
if ($this->initially_was_account == $this->is_account){
diff --git a/plugins/admin/groups/class_groupGeneric.inc b/plugins/admin/groups/class_groupGeneric.inc
index e2f6bd0a133e168edab95b192e3a64bfdbd9e8c1..eb0345a3993a4fcc3d4b1c1f5d2dfeb86d8132c1 100644 (file)
$ldap= $this->config->get_ldap_link();
$ldap->rmdir($this->dn);
- show_ldap_error($ldap->get_error(), _("Removing group failed"));
+ show_ldap_error($ldap->get_error(), sprintf(_("Removing of groups/generic with dn '%s' failed."),$this->dn));
/* Delete references to object groups */
$ldap->cd ($this->config->current['BASE']);
$ldap->$mode($this->attrs);
$ret= 0;
- if (show_ldap_error($ldap->get_error(), _("Saving group failed"))){
+ if ( show_ldap_error($ldap->get_error(), sprintf(_("Removing of groups/generic with dn '%s' failed."),$this->dn))){
$ret= 1;
}
index cf71b3b6629fbd132ca492cdaf64d0022e329efe..bd9d44c4ab181754ceabd39867cd4bcf88a7f12a 100644 (file)
$ldap->cd($this->dn);
$ldap->modify ($this->attrs);
- show_ldap_error($ldap->get_error(), _("Removing group mail settings failed"));
+ show_ldap_error($ldap->get_error(), sprintf(_("Removing of groups/mail with dn '%s' failed."),$this->dn));
/* Optionally execute a command after we're done */
$this->handle_post_events("remove");
$ldap->cd($this->dn);
$this->cleanup();
$ldap->modify ($this->attrs);
- show_ldap_error($ldap->get_error(), _("Saving group mail settings failed"));
+ show_ldap_error($ldap->get_error(), sprintf(_("Saving of groups/mail with dn '%s' failed."),$this->dn));
/* Optionally execute a command after we're done */
if ($this->initially_was_account == $this->is_account){