Code

Updated workstation - Startup
[gosa.git] / plugins / admin / systems / tabs_workstation.inc
index 138c2d4ede2fb2b4c50040aa83abb88713cbdc38..6c34fd1e8d8f2984d04e81694b69d644e56d8cf6 100644 (file)
@@ -15,7 +15,7 @@ class worktabs extends tabs
     foreach ($data as $tab){
       $this->by_name[$tab['CLASS']]= $tab['NAME'];
 
-      if ($baseobject == NULL){
+      if ($baseobject === NULL){
         $baseobject= new $tab['CLASS']($this->config, $this->dn,NULL,$this);
         $this->by_object[$tab['CLASS']]= $baseobject;
       } else {
@@ -38,10 +38,16 @@ class worktabs extends tabs
   function save_object($save_current= FALSE)
   {
     tabs::save_object($save_current);
+
+    /* Assign current cn */
+    $baseobject= $this->by_object['workgeneric'];
+    foreach ($this->by_object as $key => $obj){
+      $this->by_object[$key]->cn= $baseobject->cn;
+    }
   }
 
 
-  function save()
+  function save($ignore_account= FALSE)
   {
     /* Check for new 'dn', in order to propagate the
        'dn' to all plugins */
@@ -56,8 +62,10 @@ class worktabs extends tabs
 
     tabs::save(TRUE);
 
-    if(($this->by_object['printgeneric']->is_account==false)&&($this->by_object['printgeneric']->initially_was_account==true)){
-      $this->by_object['printgeneric']->remove_from_parent();
+    if(isset($this->by_object['printgeneric'])){
+      if(($this->by_object['printgeneric']->is_account==false)&&($this->by_object['printgeneric']->initially_was_account==true)){
+        $this->by_object['printgeneric']->remove_from_parent();
+      }
     }
 
     /* Fix tagging if needed */