X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=gosa-plugins%2Ffai%2Fadmin%2Ffai%2FtabsScript.inc;h=7cf0a027e2fd887c1991104ba7e07c49f8c16d4f;hb=9dc6ac611bbe02539e5d9326a6106f8160bc56c3;hp=3c5059b907bfb0f559d9dcc0cc9c39cf6ea29e68;hpb=aa01ea38f1fceba6725fed12214bf94b1197fd7c;p=gosa.git diff --git a/gosa-plugins/fai/admin/fai/tabsScript.inc b/gosa-plugins/fai/admin/fai/tabsScript.inc index 3c5059b90..7cf0a027e 100644 --- a/gosa-plugins/fai/admin/fai/tabsScript.inc +++ b/gosa-plugins/fai/admin/fai/tabsScript.inc @@ -3,7 +3,7 @@ class tabsScript extends tabs { var $base= ""; - var $parent; + var $parent =""; function tabsScript($config, $data, $dn,$category) { @@ -22,13 +22,13 @@ class tabsScript extends tabs function save($ignore_account= FALSE) { $baseobject= $this->by_object['faiScript']; - $new_dn ='cn='.$baseobject->cn.",".get_ou('faiscriptou').$this->parent->fai_release; + $new_dn ='cn='.$baseobject->cn.",".get_ou('faiScriptRDN').$this->parent->fai_release; if ($this->dn != $new_dn && $this->dn != "new"){ /* if( new_dn is subtree of this->dn ) */ - $cnt1 = count(split(",",$this->dn)); - $cnt2 = count(split(",",$new_dn)); + $cnt1 = count(explode(",",$this->dn)); + $cnt2 = count(explode(",",$new_dn)); if((strstr($new_dn,$this->dn))&&($cnt1<$cnt2)){ msg_dialog::display(_("Error"), _("Moving the tree failed. Destination tree is subtree of source tree."), ERROR_DIALOG); }else{