Fixed usage of .XML with .ATT for attributes in CheckboxSetField

This commit is contained in:
Sean Harvey 2014-08-04 10:18:34 +12:00
parent 1e427a2509
commit 8c56e54a47
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
<% if $Options.Count %>
<% loop $Options %>
<li class="$Class">
<input id="$ID" class="checkbox" name="$Name.XML" type="checkbox" value="$Value.ATT"<% if $isChecked %> checked="checked"<% end_if %><% if $isDisabled %> disabled="disabled"<% end_if %> />
<input id="$ID" class="checkbox" name="$Name.ATT" type="checkbox" value="$Value.ATT"<% if $isChecked %> checked="checked"<% end_if %><% if $isDisabled %> disabled="disabled"<% end_if %> />
<label for="$ID">$Title.XML</label>
</li>
<% end_loop %>