From 9a20c7070c7cbf1ac721992349f343e7fa5b3eb7 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 11 May 2020 10:58:15 +0200 Subject: [PATCH] Bug 25452: Restore alternate address email display Broken since commit 0ab22e1c7c6b6e8d14a4fb7478ab2a3d42da347d Bug 18789: Send Koha::Patron object to the templates Test plan: Create or modify a patron, fill the "email" field of the "alternate address" block (B_email) Go to the detail view of the patron => Without this patch the email is not display => With this patch applied you see it! --- koha-tmpl/intranet-tmpl/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 8321edef92..30e32eb59b 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt @@ -603,7 +603,7 @@ [% IF ( patron.B_email ) %]
  • Email: - [% B_email |html %] + [% patron.B_email |html %]
  • [% END %] -- 2.20.1