Code

Udpated mime acls
[gosa.git] / plugins / admin / systems / class_goFaxServer.inc
index 53e8ad3076cd137ffb72aac8e646cb5d0d84c3cf..c15b885549179e02d7726d7651c441bee74d5a80 100644 (file)
@@ -59,6 +59,13 @@ class goFaxServer extends plugin{
   function remove_from_parent()
   {
     plugin::remove_from_parent();
+
+    /* Remove status flag, it is not a memeber of 
+        this->attributes, so ensure that it is deleted too */
+    if(!empty($this->StatusFlag)){
+      $this->attrs[$this->StatusFlag] = array();
+    }
+
     /* Check if this is a new entry ... add/modify */
     $ldap = $this->config->get_ldap_link();
     $ldap->cat($this->dn,array("objectClass"));
@@ -69,7 +76,7 @@ class goFaxServer extends plugin{
       $ldap->cd($this->dn);
       $ldap->add($this->attrs);
     }
-    show_ldap_error($ldap->get_error());
+    show_ldap_error($ldap->get_error(), sprintf(_("Removing server services/gofax with dn '%s' failed."),$this->dn));
     $this->handle_post_events("remove");
   }
 
@@ -92,7 +99,7 @@ class goFaxServer extends plugin{
     }else{
       $this->handle_post_events("add");
     }
-    show_ldap_error($ldap->get_error());
+    show_ldap_error($ldap->get_error(), sprintf(_("Saving server services/gofax with dn '%s' failed."),$this->dn));
   }
 
 
@@ -114,7 +121,8 @@ class goFaxServer extends plugin{
       $attrs[$flag] = $value;
       $this->$flag = $value;
       $ldap->modify($attrs);
-      show_ldap_error($ldap->get_error());
+
+      show_ldap_error($ldap->get_error(), sprintf(_("Set status flag for server services/gofax with dn '%s' failed."),$this->dn));
       $this->action_hook();
     }
   }