From: hickert Date: Thu, 11 Mar 2010 09:03:56 +0000 (+0000) Subject: Execute parents execute() method child classes of plugin X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=d6eb8d213089384837da4554decf9ba6071481e9;p=gosa.git Execute parents execute() method child classes of plugin git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@16431 594d385d-05f5-0310-b6e9-bd551577e9d8 --- 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(){;}