X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=plugins%2Fadmin%2Fsystems%2Ftabs_workstation.inc;h=8716247cde1e19950bd508f84a8c1801a5e176de;hb=d59800c1cb10d2d61ac402e4e4e5253a19810a02;hp=ce5a65298982249e23e4aebe5160a41395583635;hpb=a7869b2ddfdcdb9d98c8ed0b153f8e2ee48a7725;p=gosa.git diff --git a/plugins/admin/systems/tabs_workstation.inc b/plugins/admin/systems/tabs_workstation.inc index ce5a65298..8716247cd 100644 --- a/plugins/admin/systems/tabs_workstation.inc +++ b/plugins/admin/systems/tabs_workstation.inc @@ -29,6 +29,13 @@ class worktabs extends tabs function save_object($save_current= FALSE) { tabs::save_object($save_current); + + /* Assign current cn to all other plugins */ + $baseobject= $this->by_object['workgeneric']; + foreach ($this->by_object as $key => $obj){ + $this->by_object[$key]->dn= $this->dn; + $this->by_object[$key]->cn= $baseobject->cn; + } } @@ -38,6 +45,7 @@ class worktabs extends tabs 'dn' to all plugins */ $baseobject= $this->by_object['workgeneric']; $this->dn= "cn=".$baseobject->cn.",ou=workstations,ou=systems,".$baseobject->base; + $baseobject->dn= $this->dn; foreach ($this->by_object as $key => $obj){ $this->by_object[$key]->dn= $this->dn; @@ -45,10 +53,15 @@ class worktabs extends tabs } tabs::save(TRUE); - if(($this->by_object['printgeneric']->is_account==false)&&($this->by_object['printgeneric']->initially_was_account==true)){ - $this->by_object['printgeneric']->remove_from_parent(); + + if(isset($this->by_object['printgeneric'])){ + if(($this->by_object['printgeneric']->is_account==false)&&($this->by_object['printgeneric']->initially_was_account==true)){ + $this->by_object['printgeneric']->remove_from_parent(); + } } + /* Fix tagging if needed */ + $baseobject->handle_object_tagging(); } }