FIX SelectionGroup no longer shows empty FieldLists

This commit is contained in:
Daniel Hensby 2015-02-06 11:00:00 +00:00
parent a0f9535dd4
commit d68435e978

View File

@ -13,7 +13,10 @@
<ul class="SelectionGroup<% if extraClass %> $extraClass<% end_if %>"> <ul class="SelectionGroup<% if extraClass %> $extraClass<% end_if %>">
<% loop $FieldSet %> <% loop $FieldSet %>
<li$Selected> <li$Selected>
{$RadioButton}{$RadioLabel}{$FieldHolder} {$RadioButton}{$RadioLabel}
<% if $FieldList %>
$FieldHolder
<% end_if %>
</li> </li>
<% end_loop %> <% end_loop %>
</ul> </ul>