fixed parseHtml() fieldsets
This commit is contained in:
parent
cdf0cc93b2
commit
dd45a2aff9
|
@ -605,7 +605,8 @@ function parseHtml($module, $input, $values, $restricted, &$tabindex, &$tabindex
|
||||||
case 'fieldset':
|
case 'fieldset':
|
||||||
echo "<fieldset>\n";
|
echo "<fieldset>\n";
|
||||||
if ($input[$i][$j]['legend']!='') echo "<legend>" . $input[$i][$j]['legend'] . "</legend>\n";
|
if ($input[$i][$j]['legend']!='') echo "<legend>" . $input[$i][$j]['legend'] . "</legend>\n";
|
||||||
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);
|
||||||
echo "</fieldset>\n";
|
echo "</fieldset>\n";
|
||||||
break;
|
break;
|
||||||
// selection
|
// selection
|
||||||
|
|
Loading…
Reference in New Issue