Bug 16042 - Missing closing quote in checkin template
authorOwen Leonard <oleonard@myacpl.org>
Thu, 10 Mar 2016 15:04:35 +0000 (10:04 -0500)
committerBrendan A Gallagher <brendan@bywatersolutions.com>
Fri, 11 Mar 2016 15:25:16 +0000 (15:25 +0000)
A missing quotation mark breaks the display of multiple messages during
checking. This patch adds the missing quote.

To test, apply the patch and locate an item which is on hold and is not
checked out.

 - Check in the item.
 - Confirm that both the hold notification and the "Not checked out"
   alert look correct.
 - For extra credit, validate the page and confirm that there are no
   errors related to broken markup.

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Brendan A Gallagher <brendan@bywatersolutions.com>
koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt

index c26a285..7a66a5c 100644 (file)
@@ -409,7 +409,7 @@ $(document).ready(function () {
             <input type="hidden" name="print_slip" value="0" />
             [% IF ( transfertodo ) %]
                 <button type="submit" class="approve"><i class="fa fa-check"></i> Confirm hold and transfer</button>
-                <button type="submit" class="print" onclick="this.form.print_slip.value = 1; this.form.submit()"><i class="fa fa-print></i> Print slip, transfer, and confirm</button>
+                <button type="submit" class="print" onclick="this.form.print_slip.value = 1; this.form.submit()"><i class="fa fa-print"></i> Print slip, transfer, and confirm</button>
             [% ELSE %]
                 <button type="submit" class="approve"><i class="fa fa-check"></i> Confirm hold</button>
                 <button type="submit" class="print" onclick="this.form.print_slip.value = 1; this.form.submit();"><i class="fa fa-print"></i> Print slip and confirm</button>