Code

Updated FAI template entry.
[gosa.git] / gosa-plugins / fai / admin / fai / tabsVariable.inc
index 11694b1d1a4fd167d958581705ea7055b4524577..5b23577d9eabf3d4d74bbe2d9403d9217823db5f 100644 (file)
@@ -3,13 +3,14 @@
 class tabsVariable extends tabs
 {
   var $base= "";
+  var $parent ="";
 
   function tabsVariable($config, $data, $dn,$category)
   {
        tabs::tabs($config, $data, $dn, $category);
 
        /* Add references/acls/snapshots */
-       $this->addSpecialTabs();
+#      $this->addSpecialTabs();
   }
 
   function check($ignore_account= FALSE)
@@ -21,14 +22,7 @@ class tabsVariable extends tabs
   function save($ignore_account= FALSE)
   {
        $baseobject= $this->by_object['faiVariable'];
-
-       $new_dn= 'cn='.$baseobject->cn.",".get_ou('faivariableou').get_ou('faiou').session::get('CurrentMainBase');
-
-       $faifilter = session::get('faifilter');
-       
-       if($faifilter['branch']!="main"){
-               $new_dn ='cn='.$baseobject->cn.",".get_ou('faivariableou').$faifilter['branch'];
-       }
+       $new_dn ='cn='.$baseobject->cn.",".get_ou('faiVariableRDN').$this->parent->fai_release;
                        
        if ($this->dn != $new_dn && $this->dn != "new"){
                
@@ -36,7 +30,7 @@ class tabsVariable extends tabs
                $cnt1 = count(split(",",$this->dn));
                $cnt2 = count(split(",",$new_dn));
                if((strstr($new_dn,$this->dn))&&($cnt1<$cnt2)){
-                       print_red(_("Try to move tree failed. Destination tree is subtree of source tree."));
+                       msg_dialog::display(_("Error"), _("Moving the tree failed. Destination tree is subtree of source tree."), ERROR_DIALOG);
                }else{
 //                     $baseobject->recursive_move($this->dn, $new_dn);
                }