From 8e9462982b7dc973391a95c0b318de89eedd196c 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 (cherry picked from commit 3d2cc5f116cbc8a2a4b00e44d1c59929a39b909a) Signed-off-by: Lucas Gass --- .../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 81567cb980..11abd64cbd 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/sendshelf.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/sendshelf.tt @@ -55,7 +55,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.5