From a7989ee858ab77668909a2f19575116ba9ca332d Mon Sep 17 00:00:00 2001 From: hickert Date: Mon, 29 May 2006 06:11:56 +0000 Subject: [PATCH] Fixed inherit && acl settings for workstation service git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@3535 594d385d-05f5-0310-b6e9-bd551577e9d8 --- plugins/admin/ogroups/tabs_ogroups.inc | 4 ++++ 1 file changed, 4 insertions(+) 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; } } -- 2.30.2