From 0cfc3d7123cd6c7bc8c3700dfcb8f1a83679d58d Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Fri, 15 Aug 2014 21:16:45 +0200 Subject: [PATCH] [SIGNED-OFF] Bug 12776: Capitalization: Confirmation messages in circulation Content-Type: text/plain; charset="utf-8" Changes: - Yes, renew (Y) - Yes, check out (Y) - No, don't check out (N) - No, don't renew (N) To test: - Verify changes by reading the code - Check out an item that requires confirmation Example: Patron owes fines or test with bug 12776. - Verify confirmation messages show up correctly. - Check item out again to trigger renewal - Verify confirmation message shows up correctly. Signed-off-by: Owen Leonard --- .../prog/en/modules/circ/circulation.tt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt index fd65b02..9734c0f 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -281,9 +281,9 @@ $(document).ready(function() { [% IF ( RENEW_ISSUE ) %] - + [% ELSE %] - + [% END %] [% END %] @@ -294,9 +294,9 @@ $(document).ready(function() { [% IF CAN_user_circulate_force_checkout or HIGHHOLDS %] [% IF ( RENEW_ISSUE ) %] - + [% ELSE %] - + [% END %] [% ELSE %] -- 1.7.9.5