summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 755960c)
raw | patch | inline | side by side (parent: 755960c)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 5 Nov 2008 08:35:25 +0000 (08:35 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 5 Nov 2008 08:35:25 +0000 (08:35 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@12915 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/goto/admin/applications/class_applicationManagement.inc | patch | blob | history |
diff --git a/gosa-plugins/goto/admin/applications/class_applicationManagement.inc b/gosa-plugins/goto/admin/applications/class_applicationManagement.inc
index 62a17ca7647217996a83852d028b634dd3ed1e4a..d4727b11a5acf547cf9f221fd2f085a2786f4144 100644 (file)
/* Create new usertab object */
$this->apptabs= new apptabs($this->config,$this->config->data['TABS']['APPSTABS'], $this->dn,"application");
$this->apptabs->parent = &$this;
- $this->apptabs->set_acl_base($this->acl_base);
+
+ /* Check if there is a snapshot dialog open */
+ if($this->IsReleaseManagementActivated()){
+ $this->apptabs->set_acl_base($this->acl_base);
+ }else{
+ $this->apptabs->set_acl_base($this->DivListApplication->selectedBase);
+ }
+
}