From d6eb8d213089384837da4554decf9ba6071481e9 Mon Sep 17 00:00:00 2001 From: hickert Date: Thu, 11 Mar 2010 09:03:56 +0000 Subject: [PATCH] Execute parents execute() method child classes of plugin git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@16431 594d385d-05f5-0310-b6e9-bd551577e9d8 --- .../systems/admin/systems/services/class_ServiceAddDialog.inc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gosa-plugins/systems/admin/systems/services/class_ServiceAddDialog.inc b/gosa-plugins/systems/admin/systems/services/class_ServiceAddDialog.inc index 34ea757fb..63872dc78 100644 --- a/gosa-plugins/systems/admin/systems/services/class_ServiceAddDialog.inc +++ b/gosa-plugins/systems/admin/systems/services/class_ServiceAddDialog.inc @@ -38,12 +38,14 @@ class ServiceAddDialog extends plugin{ function execute() { + plugin::execute(); + $smarty = get_smarty(); $services = $this->parent->getAllUnusedServices(); natcasesort($services); $smarty->assign("Services",$services); return($smarty->fetch(get_template_path("ServiceAddDialog.tpl", TRUE,dirname(__FILE__)))); - } + } function check(){ return array();} function save_object(){;} -- 2.30.2