[Koha-patches] [PATCH] Bug 3624 : XHTML validation, rebased for Template Toolkit

Chris Cormack chrisc at catalyst.net.nz
Thu Jul 7 23:45:10 CEST 2011


---
 .../prog/en/modules/acqui/basketgroup.tt           |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt
index ba12d7b..0c792ed 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt
@@ -222,14 +222,14 @@ function submitForm(form) {
 						<h3><label for="billingplace">Billing Place:</label></h3>
 						<select name="billingplace" id="billingplace">
 							[% FOREACH billingplaceloo IN billingplaceloop %]
-							<option value="[% billingplaceloo.value %]" [% IF ( billingplaceloo.selected ) %]selected[% END %]>[% billingplaceloo.branchname %]</option>
+							<option value="[% billingplaceloo.value %]" [% IF ( billingplaceloo.selected ) %]selected="selected"[% END %]>[% billingplaceloo.branchname %]</option>
 							[% END %]
 						</select>
 						<h3><label for="deliveryplace">Delivery Place:</label></h3>
 						<select name="deliveryplace" id="deliveryplace">
 							<option value="">--</option>
 							[% FOREACH deliveryplaceloo IN deliveryplaceloop %]
-							<option value="[% deliveryplaceloo.value %]" [% IF ( deliveryplaceloo.selected ) %]selected[% END %]>[% deliveryplaceloo.branchname %]</option>
+							<option value="[% deliveryplaceloo.value %]" [% IF ( deliveryplaceloo.selected) %]selected="selected"[% END %]>[% deliveryplaceloo.branchname %]</option>
 							[% END %]
 						</select>
                         <p>or</p>
-- 
1.7.4.1



More information about the Koha-patches mailing list