Skip to content

Commit

Permalink
Item12180: Generate explicit <tbody>
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.foswiki.org/trunk@16174 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
TimotheLitt authored and TimotheLitt committed Dec 8, 2012
1 parent 87e97c1 commit 96a8fc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/lib/Foswiki/Configure/UIs/Value.pm
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ sub renderHtml {
$tbl ||= exists $_->{col} foreach (@$feedback);
$buttons =
( $haslabel ? '' : '<br />' )
. '<table class="configureFeedbackArray">'
. '<table class="configureFeedbackArray"><tbody>'
if ($tbl);
foreach my $fb (@$feedback) {
$n++;
Expand Down Expand Up @@ -154,7 +154,7 @@ qq{<button type="button" id="${keys}feedreq$n" value="$val" class="configureFeed
qq{<span style='display:none' id="${keys}feedmsg$n"><span class="configureFeedbackWaitText">$fb->{wait}</span></span>}
if ( $fb->{wait} );
}
$buttons .= '</table>' if ($tbl);
$buttons .= '</tbody></table>' if ($tbl);
$feedback = qq{<span class="foswikiJSRequired">$buttons</span>};
$index .=
qq{<span class="configureCheckOnChange"><img src="${Foswiki::resourceURI}autocheck.png" title="This field will be automatically verified when you change it" alt="Autochecked field"></span>}
Expand Down

0 comments on commit 96a8fc3

Please sign in to comment.