Code

Fixed group messages
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 29 Jun 2006 11:41:40 +0000 (11:41 +0000)
committerhickert <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

plugins/admin/groups/class_groupAcl.inc
plugins/admin/groups/class_groupApplication.inc
plugins/admin/groups/class_groupGeneric.inc
plugins/admin/groups/class_groupMail.inc

index 01e05a0de99502f9486a25b280585a181a79d4fe..54a91713b97ec4ba917fefb362d8bd7a679f8272 100644 (file)
@@ -97,7 +97,7 @@ class acl extends plugin
        $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));
   }
 
 
@@ -193,7 +193,7 @@ class acl extends plugin
        $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));
   }
 
 
index 80839ce16b81f0a2df4529fb66be18e9966f0a56..4f036b494812a4776cf45d3dbe4fa4005f7b5ff1 100644 (file)
@@ -829,7 +829,7 @@ class appgroup extends plugin
     
     $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");
@@ -874,7 +874,7 @@ class appgroup extends plugin
     $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){
index e2f6bd0a133e168edab95b192e3a64bfdbd9e8c1..eb0345a3993a4fcc3d4b1c1f5d2dfeb86d8132c1 100644 (file)
@@ -493,7 +493,7 @@ class group extends plugin
 
     $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']);
@@ -690,7 +690,7 @@ class group extends plugin
     $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)
@@ -610,7 +610,7 @@ class mailgroup extends plugin
 
     $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");
@@ -774,7 +774,7 @@ I: Only insider delivery */
     $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){