From d1fc49bed8f2c4b0a1704620c70af2e4b9b1fed0 Mon Sep 17 00:00:00 2001 From: Emily Lamancusa Date: Mon, 31 Mar 2025 09:40:46 -0400 Subject: [PATCH] Bug 39089: (QA follow-up) Apply the same fix to from address and CC address Signed-off-by: Emily Lamancusa --- koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt index 0c8908fe2a1..38c6d5be468 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt @@ -137,13 +137,13 @@ [% END %] [% END %] [% IF ( QUEUED_MESSAGE.status == 'sent' ) %] - [% IF ( QUEUED_MESSAGE.from_address ) %] + [% IF ( QUEUED_MESSAGE.from_address && QUEUED_MESSAGE.message_transport_type != 'print') %] From: [% QUEUED_MESSAGE.from_address | html %] [% END %] [% IF ( QUEUED_MESSAGE.to_address && QUEUED_MESSAGE.message_transport_type != 'print') %] To: [% QUEUED_MESSAGE.to_address | html %] [% END %] - [% IF ( QUEUED_MESSAGE.cc_address ) %] + [% IF ( QUEUED_MESSAGE.cc_address && QUEUED_MESSAGE.message_transport_type != 'print') %] CC: [% QUEUED_MESSAGE.cc_address | html %] [% END %] [% END %] -- 2.34.1