X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=plugins%2Fadmin%2Fsystems%2Fclass_componentGeneric.inc;h=c3edb7590b5cdf721309ef332222f92d32d55f80;hb=d77692031a0b3343cb7306f9bdd449208291eb17;hp=7997978d33bcfde538544af0734ba64318419bf1;hpb=ee91ec61bdef16ff6697982124e70a654f370689;p=gosa.git diff --git a/plugins/admin/systems/class_componentGeneric.inc b/plugins/admin/systems/class_componentGeneric.inc index 7997978d3..c3edb7590 100644 --- a/plugins/admin/systems/class_componentGeneric.inc +++ b/plugins/admin/systems/class_componentGeneric.inc @@ -42,6 +42,9 @@ class componentGeneric extends plugin function execute() { + /* Call parent execute */ + plugin::execute(); + /* Do we represent a valid phone? */ if (!$this->is_account && $this->parent == NULL){ $display= "\"\" ". @@ -60,6 +63,9 @@ class componentGeneric extends plugin } $smarty->assign("base_select", $this->base); + /* Show Asterisk for required attribute ipHostNumber and macAddress */ + $smarty->assign("staticAddress", "*"); + /* Show main page */ $smarty->assign("netconfig", dirname(__FILE__)."/network.tpl"); return($smarty->fetch (get_template_path('component.tpl', TRUE))); @@ -110,7 +116,7 @@ class componentGeneric extends plugin $message[]= _("The required field 'MAC-address' is not set."); } if ($this->ipHostNumber == "" && chkacl ($this->acl, "ipHostNumber") == ""){ - $message[]= _("The required field 'IP-address' is not set."; + $message[]= _("The required field 'IP-address' is not set."); } $ui= get_userinfo();