[Koha-patches] [PATCH] Bug 10106 - Markup error causing misplacement of "reopen" checkbox on invoice edit screen

Owen Leonard oleonard at myacpl.org
Wed Apr 24 14:54:16 CEST 2013


A misplaced closing </li> causes the "reopen" checkbox to be misplaced
if you're editing the a closed invoice. This patch puts the </li> in its
proper place.

To test, view a closed invoice (Acquisitions -> Vendor -> Invoices) and
confirm that the "reopen" checkbox is correctly placed.
---
 .../intranet-tmpl/prog/en/modules/acqui/invoice.tt |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt
index 108e771..96df8d1 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt
@@ -70,7 +70,7 @@
             <li><span class="label">Status:</span>
                 Closed on [% invoiceclosedate | $KohaDates %].</li>
 
-            <li><label for="reopen">Reopen: </label></li> <input type="checkbox" name="reopen" id="reopen" />
+            <li><label for="reopen">Reopen: </label> <input type="checkbox" name="reopen" id="reopen" /></li>
             [% ELSE %]
             <li><span class="label">Status:</span>
                 Open.</li>
-- 
1.7.9.5


More information about the Koha-patches mailing list