From 4f9d9bacfe6539577530ac66d95804a9a7042c50 Mon Sep 17 00:00:00 2001 From: Corey Fuimaono Date: Wed, 16 Jan 2013 10:48:03 +1300 Subject: [PATCH] bug 9397 - Error Messages hard to find for Visually Impaired Users (Accessibility) [Returning Items] {REVISION 1.1} testing procedure: 1. Check in Invalid Item 2. See that new header has been added. "Can't Check in" Signed-off-by: Liz Rea A followup may come that makes this text invisible, but this helps accessibility a great dea, and passes validation. Signed-off-by: Jonathan Druart Amended patch: replace "Can't Check in" with "Cannot check in" and delete a h3 element with the same text in order to avoid duplicated messages. --- koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt index 7fd8d1d..a009c58 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt @@ -317,6 +317,7 @@ $(document).ready(function () { [% IF ( errmsgloop ) %]
+
Cannot check in
[% FOREACH errmsgloo IN errmsgloop %] [% IF ( errmsgloo.badbarcode ) %]

No item with barcode: [% errmsgloo.msg %]

@@ -340,7 +341,6 @@ $(document).ready(function () { [% END %] [% IF ( errmsgloo.withdrawn ) %] [% IF BlockReturnOfWithdrawnItems %] -

Cannot Check In

Item is withdrawn. NOT CHECKED IN

[% ELSE %]

Item is withdrawn.

-- 1.7.10.4