From 3486c4749df9a5b846a6c3fab9517f255b54211d Mon Sep 17 00:00:00 2001 From: hickert Date: Wed, 5 May 2010 10:04:23 +0000 Subject: [PATCH] Added property class to get_cfg_requests git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18122 594d385d-05f5-0310-b6e9-bd551577e9d8 --- .../systems/services/kerberos/class_password-methods-MIT.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gosa-plugins/mit-krb5/admin/systems/services/kerberos/class_password-methods-MIT.inc b/gosa-plugins/mit-krb5/admin/systems/services/kerberos/class_password-methods-MIT.inc index 66b8128be..6505f9113 100644 --- a/gosa-plugins/mit-krb5/admin/systems/services/kerberos/class_password-methods-MIT.inc +++ b/gosa-plugins/mit-krb5/admin/systems/services/kerberos/class_password-methods-MIT.inc @@ -369,7 +369,7 @@ class passwordMethodMIT extends passwordMethod /* No config object given, this may be the case if there is only a is_available() request triggered. */ - if (is_object($this->config) && $this->config->get_cfg_value("useSaslForKerberos") == "true"){ + if (is_object($this->config) && $this->config->get_cfg_value("core","useSaslForKerberos") == "true"){ $mode= "sasl"; } return "{".$mode."}".$this->attrs['uid'][0]."@".$this->goKrbRealm; @@ -425,7 +425,7 @@ class passwordMethodMIT extends passwordMethod /* No config object given, this may be the case if there is only a is_available() request triggered. */ - if (is_object($this->config) && $this->config->get_cfg_value("useSaslForKerberos") == "true"){ + if (is_object($this->config) && $this->config->get_cfg_value("core","useSaslForKerberos") == "true"){ $mode= "sasl"; } return "$mode"; -- 2.30.2