From 306276d1271c9212fa9c3a4785e895bd660d9b18 Mon Sep 17 00:00:00 2001 From: hickert Date: Mon, 21 Jul 2008 12:41:31 +0000 Subject: [PATCH] Renamed "krb_host_key" class to "krbHostKey" due to problems with the acl mangement git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@11729 594d385d-05f5-0310-b6e9-bd551577e9d8 --- gosa-plugins/systems/admin/systems/class_servGeneric.inc | 4 ++-- gosa-plugins/systems/admin/systems/class_serverService.inc | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gosa-plugins/systems/admin/systems/class_servGeneric.inc b/gosa-plugins/systems/admin/systems/class_servGeneric.inc index 108d6dc7f..4255e7812 100644 --- a/gosa-plugins/systems/admin/systems/class_servGeneric.inc +++ b/gosa-plugins/systems/admin/systems/class_servGeneric.inc @@ -78,8 +78,8 @@ class servgeneric extends plugin plugin::plugin ($config, $dn, $parent); /* Initialize kerberos host key plugin */ - if(class_available("krb_host_keys")){ - $this->kerberos_key_service = new krb_host_keys($this->config,$this); + if(class_available("krbHostKeys")){ + $this->kerberos_key_service = new krbHostKeys($this->config,$this); } $this->ui = get_userinfo(); diff --git a/gosa-plugins/systems/admin/systems/class_serverService.inc b/gosa-plugins/systems/admin/systems/class_serverService.inc index 1f1f8229c..3ce35118c 100644 --- a/gosa-plugins/systems/admin/systems/class_serverService.inc +++ b/gosa-plugins/systems/admin/systems/class_serverService.inc @@ -258,7 +258,7 @@ class ServerService extends plugin /* There is currently a subdialog open, display this dialog */ if(is_object($this->dialog)){ $add =""; - if(isset($this->dialog->krb_host_key) && $this->dialog->krb_host_key instanceof krb_host_keys){ + if(isset($this->dialog->krb_host_key) && $this->dialog->krb_host_key instanceof krbHostKeys){ $add = $this->dialog->krb_host_key->save_object_by_prefix($this->dialog->krb_service_prefix); $add = $this->dialog->krb_host_key->execute_by_prefix($this->dialog->krb_service_prefix,TRUE); } @@ -426,7 +426,7 @@ class ServerService extends plugin } } if($this->plugins[$name]->initially_was_account){ - if(isset($this->plugins[$name]->krb_host_key) && $this->plugins[$name]->krb_host_key instanceof krb_host_keys){ + if(isset($this->plugins[$name]->krb_host_key) && $this->plugins[$name]->krb_host_key instanceof krbHostKeys){ $this->plugins[$name]->krb_host_key->remove_from_parent_by_prefix($this->plugins[$name]->krb_host_key); } $this->plugins[$name]->remove_from_parent(); -- 2.30.2