From: hickert Date: Mon, 29 May 2006 06:11:56 +0000 (+0000) Subject: Fixed inherit && acl settings for workstation service X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=a7989ee858ab77668909a2f19575116ba9ca332d;p=gosa.git Fixed inherit && acl settings for workstation service git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@3535 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/plugins/admin/ogroups/tabs_ogroups.inc b/plugins/admin/ogroups/tabs_ogroups.inc index 4e989dc52..40ddff878 100644 --- a/plugins/admin/ogroups/tabs_ogroups.inc +++ b/plugins/admin/ogroups/tabs_ogroups.inc @@ -71,6 +71,7 @@ class ogrouptabs extends tabs require_once("class_mailogroup.inc"); $this->by_name['mailogroup']= _("Mail"); $this->by_object['mailogroup']= new mailogroup($this->config, $this->dn); + $this->by_object['mailogroup']->acl = "#all#"; $this->by_object['mailogroup']->parent= &$this; } } @@ -82,6 +83,8 @@ class ogrouptabs extends tabs if(!isset($this->by_object['termgroup'])){ $this->by_name['termgroup']= _("System"); $this->by_object['termgroup']= new termgroup($this->config, $this->dn); + $this->by_object['termgroup']->acl = "#all#"; + $this->by_object['termgroup']->inheritTimeServer = false; $this->by_object['termgroup']->parent= &$this; } } @@ -96,6 +99,7 @@ class ogrouptabs extends tabs $this->by_name['workservice']= _("Devices"); $this->by_object['workservice']= new workservice($this->config, $this->dn); $this->by_object['workservice']->acl = "#all#"; + $this->by_object['workservice']->inheritTimeServer = false; $this->by_object['workservice']->parent= &$this; } }