Bug 25452: Restore alternate address email display

Broken since
  commit 0ab22e1c7c
  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!

Signed-off-by: David Nind <david@davidnind.com>
Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
Jonathan Druart 2020-05-11 10:58:15 +02:00 committed by Martin Renvoize
parent 67ff0f7285
commit 635242a69a
Signed by: martin.renvoize
GPG key ID: 422B469130441A0F

View file

@ -614,7 +614,7 @@
[% IF ( patron.B_email ) %] [% IF ( patron.B_email ) %]
<li id="patron-bemail" class="email"> <li id="patron-bemail" class="email">
<span class="label">Email: </span> <span class="label">Email: </span>
<a title="[% patron.B_email | html %]" href="mailto:[% patron.B_email | url %]">[% B_email |html %]</a> <a title="[% patron.B_email | html %]" href="mailto:[% patron.B_email | url %]">[% patron.B_email |html %]</a>
</li> </li>
[% END %] [% END %]