From 8468ad7bba665954763314ae25a3474695c9066c Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Wed, 18 Nov 2020 14:54:17 +0000 Subject: [PATCH] Bug 27051: Add email to OPAC library page Test plan: 1. Add some branch emails via /cgi-bin/koha/admin/branches.pl 2. Go to the OPAC and opac-library.pl, notice there emails are not listed 3. Apply patch 4. Reloda opac-library.pl and you should see the branch email addresses. --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-library.tt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-library.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-library.tt index bd9a7744aa..40198ba1ab 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-library.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-library.tt @@ -56,6 +56,9 @@ [% IF ( library.branchfax ) %]

Fax: [% library.branchfax | html %]

[% END %] + [% IF ( library.branchemail ) %] +

Email: [% library.branchemail | html %]

+ [% END %] [% IF ( library.branchurl ) %]

[% library.branchurl | html %]

[% END %] -- 2.11.0