Code

Added acls to mimetype
[gosa.git] / plugins / admin / fai / tabsVariable.inc
index e2b59917e7923a19db5c0f751986eff179926a53..aca820a3e7d780d55668c923e6647e3ac8173ba6 100644 (file)
@@ -7,6 +7,9 @@ class tabsVariable extends tabs
   function tabsVariable($config, $data, $dn)
   {
        tabs::tabs($config, $data, $dn);
+
+       /* Add references/acls/snapshots */
+       $this->addSpecialTabs();
   }
 
   function check()
@@ -33,15 +36,12 @@ class tabsVariable extends tabs
                if((strstr($new_dn,$this->dn))&&($cnt1<$cnt2)){
                        print_red(_("Try to move tree failed. Destination tree is subtree of source tree."));
                }else{
-                       $baseobject->recursive_move($this->dn, $new_dn);
+//                     $baseobject->recursive_move($this->dn, $new_dn);
                }
        }
        $this->dn= $new_dn;
 
        tabs::save(TRUE);
-
-       /* Fix tagging if needed */
-       $baseobject->handle_object_tagging();
   }
 
 }