From: hickert Date: Wed, 5 May 2010 10:04:16 +0000 (+0000) Subject: Added property class to get_cfg_requests X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=1c8d7872618b5d3652c10b15a9c98bb03e4c19e9;p=gosa.git Added property class to get_cfg_requests git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18119 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-plugins/systems/admin/systems/class_systemManagement.inc b/gosa-plugins/systems/admin/systems/class_systemManagement.inc index b386f2421..70bf26335 100644 --- a/gosa-plugins/systems/admin/systems/class_systemManagement.inc +++ b/gosa-plugins/systems/admin/systems/class_systemManagement.inc @@ -132,7 +132,7 @@ class systemManagement extends management if ($this->config->boolValueIsTrue("main", "copyPaste")){ $this->cpHandler = new CopyPasteHandler($this->config); } - if($this->config->get_cfg_value("enableSnapshots") == "true"){ + if($this->config->get_cfg_value("core","enableSnapshots") == "true"){ $this->snapHandler = new SnapshotHandler($this->config); } diff --git a/gosa-plugins/systems/admin/systems/tabs_server.inc b/gosa-plugins/systems/admin/systems/tabs_server.inc index 95ffbcaad..ea977581a 100644 --- a/gosa-plugins/systems/admin/systems/tabs_server.inc +++ b/gosa-plugins/systems/admin/systems/tabs_server.inc @@ -105,7 +105,7 @@ class servtabs extends tabs /* cn is not case sensitive for ldap, but for php it is!! */ if($baseobject->orig_dn != "new"){ - if($this->config->get_cfg_value("accountPrimaryAttribute") == "cn"){ + if($this->config->get_cfg_value("core","accountPrimaryAttribute") == "cn"){ if (strtolower($baseobject->orig_dn) != (strtolower($this->dn))){ $baseobject->recursive_move($baseobject->orig_dn, $this->dn); }