X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=gosa-plugins%2Ffai%2Fadmin%2Ffai%2FtabsTemplate.inc;h=e47096fd32b3782c39e208712faca501967f784a;hb=89f67cee6e7bd74cbc0f1d489d573b8101d48ac3;hp=6e9150812491fee21b95a170c62be872de501ede;hpb=aa01ea38f1fceba6725fed12214bf94b1197fd7c;p=gosa.git diff --git a/gosa-plugins/fai/admin/fai/tabsTemplate.inc b/gosa-plugins/fai/admin/fai/tabsTemplate.inc index 6e9150812..e47096fd3 100644 --- a/gosa-plugins/fai/admin/fai/tabsTemplate.inc +++ b/gosa-plugins/fai/admin/fai/tabsTemplate.inc @@ -3,7 +3,7 @@ class tabsTemplate extends tabs { var $base= ""; - var $parent; + var $parent =""; function tabsTemplate($config, $data, $dn,$category) { @@ -22,13 +22,13 @@ class tabsTemplate extends tabs function save($ignore_account= FALSE) { $baseobject= $this->by_object['faiTemplate']; - $new_dn ='cn='.$baseobject->cn.",".get_ou('faitemplateou').$this->parent->fai_release; + $new_dn ='cn='.$baseobject->cn.",".get_ou('faiTemplateRDN').$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{