Code

Added acls to mimetype
[gosa.git] / plugins / admin / fai / tabsScript.inc
index 60d70673efb63c4e2967950efa1ff40afa0747c0..69ddfc9635329c68b069f6ca9eb38e4494c56ea8 100644 (file)
@@ -7,6 +7,9 @@ class tabsScript extends tabs
   function tabsScript($config, $data, $dn)
   {
        tabs::tabs($config, $data, $dn);
+
+       /* Add references/acls/snapshots */
+       $this->addSpecialTabs();
   }
 
   function check()
@@ -19,12 +22,11 @@ class tabsScript extends tabs
   {
        $baseobject= $this->by_object['faiScript'];
 
-       $branch = "";
+       $new_dn= 'cn='.$baseobject->cn.",ou=scripts,ou=fai,ou=configs,ou=systems,".$_SESSION['CurrentMainBase'];
+
        if($_SESSION['faifilter']['branch']!="main"){
-               $branch = "ou=".$_SESSION['faifilter']['branch'].",";
+               $new_dn ='cn='.$baseobject->cn.",ou=scripts,".$_SESSION['faifilter']['branch'];
        }
-                                    
-       $new_dn= 'cn='.$baseobject->cn.",ou=scripts,".$branch."ou=fai,ou=configs,ou=systems,".$_SESSION['faifilter']['base'];
        
        if ($this->dn != $new_dn && $this->dn != "new"){
                
@@ -34,7 +36,7 @@ class tabsScript 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;