From de8e1e7084bd87b5f28ffd6c7dcb1ca2e1d32b8e Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Mon, 14 Jun 2021 20:33:48 +0000 Subject: [PATCH] Bug 28405: add author name to request.tt when it exists To test: 1. Place a hold and observe request.tt 2. No author name 3. Apply patch 4. Reload request.tt 5. Author name should appear on the same line as the title. Signed-off-by: Barbara Johnson --- koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt index bddbe802d5..02baece885 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt @@ -94,7 +94,7 @@ [% END %] [% UNLESS ( multi_hold ) %] -

Place a hold on [% INCLUDE 'biblio-title.inc' link = 1 %]

+

Place a hold on [% INCLUDE 'biblio-title.inc' link = 1 %][% IF biblio.author %] / [% biblio.author | html %][% END %]

[% ELSE %]

Confirm holds

[% END %] -- 2.20.1