From 9d8f243ff9336f0997397048bbe777393c057d10 Mon Sep 17 00:00:00 2001 From: Vitor FERNANDES Date: Thu, 10 Jan 2013 16:24:07 +0000 Subject: [PATCH] Bug 9376: Problem with dateexpiry display in moremember.tt There is a problem that brokens the interface of moremmeber when displaying the date expiry when renewing a patron. In the first comment I said that the line that causes the error should be: [% dateexpiry %] but the correct way should be: [% dateexpiry %] This way the date expiry after renew a patron appears in bold. Test plan: - after apply the patch try to renew a patron and check that almost everything went bold - apply the patch - renew a patron and only the date expiry is bolder. Sponsored-by: KEEP SOLUTIONS --- .../prog/en/modules/members/moremember.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt index 4e6271f..bbb5cab 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt @@ -344,7 +344,7 @@ function validate1(date) {
  • Expiration date: [% IF ( reregistration ) %] - [% dateexpiry %] + [% dateexpiry %] [% ELSE %] [% dateexpiry %] [% END %] -- 1.7.9.5