Code

Udpated mime acls
[gosa.git] / plugins / admin / systems / tabs_terminal.inc
index 5f5e47eea73c66a797388caf6ad1245446d9e24a..17a7c32a1f02e3c09adb74e782d318a836b8898c 100644 (file)
@@ -24,6 +24,9 @@ class termtabs extends tabs
         $this->current= $tab['CLASS'];
       }
     }
+
+    /* Add references/acls/snapshots */
+    $this->addSpecialTabs();
   }
 
   function save_object($save_current= FALSE)
@@ -42,6 +45,7 @@ class termtabs extends tabs
        'dn' to all plugins */
     $baseobject= $this->by_object['termgeneric'];
     $this->dn= "cn=".$baseobject->cn.",ou=terminals,ou=systems,".$baseobject->base;
+    $baseobject->dn= $this->dn;
 
     foreach ($this->by_object as $key => $obj){
       $this->by_object[$key]->dn= $this->dn;
@@ -53,6 +57,8 @@ class termtabs extends tabs
       $this->by_object['printgeneric']->remove_from_parent();
     }
 
+    /* Fix tagging if needed */
+    $baseobject->handle_object_tagging();
   }
 
 }