From 96cf00fafb436bc3ccc3cbe25277b6342e4131fc Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Fri, 14 Mar 2014 11:10:19 -0400 Subject: [PATCH] Bug 11935 - Capitalization: OPAC prog theme, checkouts tab Content-Type: text/plain; charset="utf-8" opac-user.tt in the prog theme contains 'Renew Selected' and 'Renew All'. These are incorrectly capitalized. This patch corrects. To test you must have OpacRenewalAllowed enabled. Apply the patch, switch to the prog theme, and log in to the OPAC as a patron who has checkouts. At the bottom of the table of checkouts you should see the renew buttons with correct capitalization. --- koha-tmpl/opac-tmpl/prog/en/modules/opac-user.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/opac-tmpl/prog/en/modules/opac-user.tt b/koha-tmpl/opac-tmpl/prog/en/modules/opac-user.tt index 62a852b..d843cbb 100644 --- a/koha-tmpl/opac-tmpl/prog/en/modules/opac-user.tt +++ b/koha-tmpl/opac-tmpl/prog/en/modules/opac-user.tt @@ -204,7 +204,7 @@ var MSG_CONFIRM_RESUME_HOLDS = _("Are you sure you want to resume all suspended [% END %] [% IF ( canrenew && !userdebarred && OpacRenewalAllowed ) %] - + [% END %] [% IF ( canrenew && !userdebarred && OpacRenewalAllowed ) %] @@ -214,7 +214,7 @@ var MSG_CONFIRM_RESUME_HOLDS = _("Are you sure you want to resume all suspended [% FOREACH ISSUE IN ISSUES %] [% END %] - + [% END %] [% ELSE %] -- 1.7.9.5