From 89ec0eb08563d21ee672f687a6415aec43c41741 Mon Sep 17 00:00:00 2001 From: hickert Date: Mon, 10 May 2010 12:17:34 +0000 Subject: [PATCH] Replaced config->search with get_cfg_value git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18216 594d385d-05f5-0310-b6e9-bd551577e9d8 --- gosa-core/include/class_configRegistry.inc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gosa-core/include/class_configRegistry.inc b/gosa-core/include/class_configRegistry.inc index e9b5987ab..d97aa66ae 100644 --- a/gosa-core/include/class_configRegistry.inc +++ b/gosa-core/include/class_configRegistry.inc @@ -88,13 +88,13 @@ class configRegistry{ // Register Post Events (postmodfiy,postcreate,postremove,checkhook) if(isset($def['plShortName'])){ $this->classToName[$cname] = $def['plShortName']; - $data = array('name' => 'postcreate','type' => 'string'); + $data = array('name' => 'postcreate','type' => 'command'); $this->register($cname, $data); - $data = array('name' => 'postremove','type' => 'string'); + $data = array('name' => 'postremove','type' => 'command'); $this->register($cname, $data); - $data = array('name' => 'postmodify','type' => 'string'); + $data = array('name' => 'postmodify','type' => 'command'); $this->register($cname, $data); - $data = array('name' => 'checkhook', 'type' => 'string'); + $data = array('name' => 'check', 'type' => 'command'); $this->register($cname, $data); } -- 2.30.2