From: hickert Date: Wed, 14 Jun 2006 06:36:00 +0000 (+0000) Subject: Updated management dialogs X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=91b088c27a2f06c2f307c9d5cae484be86b8c68d;p=gosa.git Updated management dialogs git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@3807 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/plugins/admin/groups/class_groupManagement.inc b/plugins/admin/groups/class_groupManagement.inc index 69ca59c01..e7751d531 100644 --- a/plugins/admin/groups/class_groupManagement.inc +++ b/plugins/admin/groups/class_groupManagement.inc @@ -342,7 +342,7 @@ class groupManagement extends plugin /* Check if there is a snapshot dialog open */ - if($str = $this->showSnapshotDialog($this->DivListGroup->selectedBase,get_groups_ou())){ + if($str = $this->showSnapshotDialog($this->DivListGroup->selectedBase,array(get_groups_ou().$this->DivListGroup->selectedBase))){ return($str); } diff --git a/plugins/admin/ogroups/class_ogroupManagement.inc b/plugins/admin/ogroups/class_ogroupManagement.inc index 3142979c0..7f5bdeebe 100644 --- a/plugins/admin/ogroups/class_ogroupManagement.inc +++ b/plugins/admin/ogroups/class_ogroupManagement.inc @@ -347,7 +347,7 @@ class ogroupManagement extends plugin ****************/ /* Check if there is a snapshot dialog open */ - if($str = $this->showSnapshotDialog($this->DivListOGroup->selectedBase,get_groups_ou())){ + if($str = $this->showSnapshotDialog($this->DivListOGroup->selectedBase,array(get_groups_ou().$this->DivListOGroup->selectedBase))){ return($str); } diff --git a/plugins/admin/users/class_userManagement.inc b/plugins/admin/users/class_userManagement.inc index 91827bc01..e0384a51a 100644 --- a/plugins/admin/users/class_userManagement.inc +++ b/plugins/admin/users/class_userManagement.inc @@ -637,7 +637,7 @@ class userManagement extends plugin } /* Check if there is a snapshot dialog open */ - if($str = $this->showSnapshotDialog($this->DivListUsers->selectedBase,get_people_ou())){ + if($str = $this->showSnapshotDialog($this->DivListUsers->selectedBase,array(get_people_ou().$this->DivListUsers->selectedBase))){ return($str); }