From 778e38f422a220c04dcd55b11b3480b7a705f784 Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Sat, 1 Dec 2012 19:38:41 +0000 Subject: [PATCH] IDs for hidden input fields --- lam/lib/html.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lam/lib/html.inc b/lam/lib/html.inc index b0696e09..d69669a0 100644 --- a/lam/lib/html.inc +++ b/lam/lib/html.inc @@ -2290,7 +2290,7 @@ class htmlHiddenInput extends htmlElement { * @return array List of input field names and their type (name => type) */ function generateHTML($module, $input, $values, $restricted, &$tabindex, $scope) { - echo ''; + echo ''; return array($this->name => 'hidden'); }