Bug 16215: Missing closing quote in checkout template
authorOwen Leonard <oleonard@myacpl.org>
Wed, 6 Apr 2016 14:31:09 +0000 (10:31 -0400)
committerBrendan A Gallagher <brendan@bywatersolutions.com>
Wed, 6 Apr 2016 22:00:59 +0000 (22:00 +0000)
This patch adds a missing closing quote to the circulation template.

To see the affect of this bug:

- Log in to Koha with an account which does not have the
  'force_checkout' permission.
- Locate a barcode which is checked out to a patron.
- Open a different patron account for checkout.
- Try to check out the barcode to that different patron.

You see a "Cannot check out" dialog which breaks the structure of the
rest of the page.

To test, apply the patch and repeat the steps above. The issue should be
fixed.

Signed-off-by: Hector Castro <hector.hecaxmmx@gmail.com>
Works as advertised

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Brendan A Gallagher <brendan@bywatersolutions.com>
koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt

index aa7bbdb..e9d3956 100644 (file)
@@ -408,7 +408,7 @@ $(document).ready(function() {
         <button type="submit" class="deny" accesskey="n"><i class="fa fa-times"></i> No, don't check out (N)</button>
         [% END %]
     [% ELSE %]
-        <button type="submit" class="deny"><i class="fa fa-times></i> Continue</button>
+        <button type="submit" class="deny"><i class="fa fa-times"></i> Continue</button>
     [% END %]
 </form>