From 6be9971a0e2fc5543886067ea989640ebe611c19 Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Mon, 11 Jul 2005 18:53:53 +0000 Subject: [PATCH] profile options were not correctly saved if in subtable --- lam/lib/modules.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lam/lib/modules.inc b/lam/lib/modules.inc index 99cb6f58..6bcc2ed9 100644 --- a/lam/lib/modules.inc +++ b/lam/lib/modules.inc @@ -644,7 +644,8 @@ function parseHtml($module, $input, $values, $restricted, &$tabindex, &$tabindex break; // sub table case 'table': - parseHtml($module, $input[$i][$j]['value'], $values, $restricted, $tabindex, $tabindexLink, $scope); + $retTemp = parseHtml($module, $input[$i][$j]['value'], $values, $restricted, $tabindex, $tabindexLink, $scope); + $ret = array_merge($ret, $retTemp); break; // help link case 'help':