From 83c1393a4a52f996486c0e5153ff8634fecb8ca0 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Fri, 14 Mar 2014 11:10:19 -0400 Subject: [PATCH] [SIGNED OFF] Bug 11935 - Capitalization: OPAC prog theme, checkouts tab 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. Signed-off-by: Mark Tompsett --- 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