From 3d2cc5f116cbc8a2a4b00e44d1c59929a39b909a 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 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 Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 69ddb83f41cfc5c9eb6b4e483bca9316bac98db8) Signed-off-by: Martin Renvoize --- .../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.39.2