From aacd40ee3768b660c758a9599c91c57bea5624eb Mon Sep 17 00:00:00 2001 From: David Nind Date: Wed, 30 Nov 2022 23:48:25 +0000 Subject: [PATCH] Bug 32302: (follow-up) Hide ISBN label when list sent from the staff interface Content-Type: text/plain; charset=utf-8 This makes the same change to the staff interface. Lists sent from the staff interface hide the ISBN label in the email message when there are no ISBNs for a record. Signed-off-by: David Nind Signed-off-by: Marcel de Rooy --- .../intranet-tmpl/prog/en/modules/virtualshelves/sendshelf.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/sendshelf.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/sendshelf.tt index 5ee9a72f06..b0c4fb8878 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/sendshelf.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/sendshelf.tt @@ -57,7 +57,7 @@ Your list: [% shelfname | $raw %]
[% END %] - [% IF ( BIBLIO_RESULT.ISBN ) %] + [% IF ( BIBLIO_RESULT.ISBN.size > 0 ) %] ISBN: [% FOREACH isbn IN BIBLIO_RESULT.ISBN %] [% isbn | $raw %] -- 2.30.2