summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 0cb559c)
raw | patch | inline | side by side (parent: 0cb559c)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 5 Nov 2008 08:33:20 +0000 (08:33 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 5 Nov 2008 08:33:20 +0000 (08:33 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@12914 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 6283ec927635f94b8cf4afe666296244be24c864..62a17ca7647217996a83852d028b634dd3ed1e4a 100644 (file)
var $enableReleaseManagement = false;
var $start_pasting_copied_objects = FALSE;
+ var $acl_base ="";
var $app_base ="";
var $app_release ="";
var $acl_module = array("application");
/* Save configuration for internal use */
$this->config = &$config;
$this->ui = &$ui;
+ $this->acl_base = $this->config->current['BASE'];
/* Check if copy & paste is activated */
if($this->config->boolValueIsTrue("MAIN","COPYPASTE")){
/* 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->app_base);
+ $this->apptabs->set_acl_base($this->acl_base);
}