From: hickert Date: Mon, 10 May 2010 12:17:34 +0000 (+0000) Subject: Replaced config->search with get_cfg_value X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=89ec0eb08563d21ee672f687a6415aec43c41741;p=gosa.git Replaced config->search with get_cfg_value git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18216 594d385d-05f5-0310-b6e9-bd551577e9d8 --- 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); }