Code

* Saved missing value for goImapSieveServer
[gosa.git] / plugins / admin / systems / class_phoneGeneric.inc
index 11a0509d417c4854cbb87c6bb70706688b6db35e..38839d7540a1db337b864e2290fab8f3befb5b47 100644 (file)
@@ -96,6 +96,9 @@ class phoneGeneric extends plugin
 
   function execute()
   {
+       /* Call parent execute */
+       plugin::execute();
+
     /* Do we represent a valid phone? */
     if (!$this->is_account && $this->parent == NULL){
       $display= "<img alt=\"\" src=\"images/stop.png\" align=middle>&nbsp;<b>".
@@ -210,7 +213,7 @@ class phoneGeneric extends plugin
 
     $ldap->search ("(&(objectClass=goFonAccount)(goFonHardware=".$this->cn."))", array("uid","cn"));
     while ($attr =  $ldap->fetch()){
-      print_red(sprintf(_("Can't delete the phone. There are still users using this phone, one of them is user '%s'."),
+      print_red(sprintf(_("Can't delete because there are user which are depending on this phone. One of them is user '%s'."),
         ($attr['uid'][0]." - ".$attr['cn'][0])));
       return;
     }
@@ -364,6 +367,15 @@ class phoneGeneric extends plugin
 
       $ldap->cd($this->dn);
       $ldap->modify($this->attrs);
+      // $user_phone_reload   
+      $ldap->cd ($this->config->current['BASE']); 
+      $user_phone_assignment = $ldap->fetch($ldap->search("(&(objectClass=goFonAccount)(goFonHardware=".$this->cn."))",array("uid")));
+      if($user_phone_assignment){
+        $usertab= new usertabs($this->config,$this->config->data['TABS']['USERTABS'], $user_phone_assignment['dn']);
+        $usertab->by_object['phoneAccount']->is_modified = true;
+        $usertab->save();
+        unset($usertab);
+      }
       $this->handle_post_events("modify");
     }
     show_ldap_error($ldap->get_error());