[Koha-patches] [PATCH] Fix for Bug 6570 - unlabeled box on funds form

Owen Leonard oleonard at myacpl.org
Wed Jul 13 16:23:22 CEST 2011


The cause was a missing </select>, an error which wasn't
picked up by the HTML validator. Firefox 3.6 didn't have
a problem with it, but newer browsers must be changing
the way they accommodate markup errors.
---
 .../prog/en/modules/admin/aqbudgets.tt             |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt
index af6a238..ca623f3 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt
@@ -319,6 +319,7 @@
     [% IF ( budget_perm_1 ) %]<option value="1" selected="selected">Owner</option>[% ELSE %]<option value="1">Owner</option>[% END %]
     [% IF ( budget_perm_2 ) %]<option value="2" selected="selected">Library</option>[% ELSE %]<option value="2">Library</option>[% END %]
     </option>
+    </select>
     </li>
 
     <li>
-- 
1.7.3



More information about the Koha-patches mailing list