X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=gosa-plugins%2Ffai%2Fadmin%2Ffai%2FtabsHook.inc;h=40c997c767e8378f8b81c71c26c294a2683db3dc;hb=cb773874cb502bc0f01aeefc43849e0522e1a4d9;hp=7b0859fb62ac06a426c9c3f4797aff1cccb7e96c;hpb=aa01ea38f1fceba6725fed12214bf94b1197fd7c;p=gosa.git diff --git a/gosa-plugins/fai/admin/fai/tabsHook.inc b/gosa-plugins/fai/admin/fai/tabsHook.inc index 7b0859fb6..40c997c76 100644 --- a/gosa-plugins/fai/admin/fai/tabsHook.inc +++ b/gosa-plugins/fai/admin/fai/tabsHook.inc @@ -3,7 +3,7 @@ class tabsHook extends tabs { var $base= ""; - var $parent; + var $parent =""; function tabsHook($config, $data, $dn,$category) { @@ -21,13 +21,13 @@ class tabsHook extends tabs function save($ignore_account= FALSE) { $baseobject= $this->by_object['faiHook']; - $new_dn ='cn='.$baseobject->cn.",".get_ou('faihookou').$this->parent->fai_release; + $new_dn ='cn='.$baseobject->cn.",".get_ou('faiHookRDN').$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{