From f7d95ab8fba68ee4e9b9c1362e1982eb5a4575ba Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Tue, 16 Jan 2024 17:11:23 +0000 Subject: [PATCH] Bug 34853: Switch to 'div' as suggested This patch switches us from '' to '
' so we're just using a block level elemenet instead of manipulating an inline element to act like a block. Signed-off-by: Martin Renvoize Signed-off-by: Katrin Fischer --- .../intranet-tmpl/prog/en/modules/catalogue/detail.tt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt index 9de47d0b61..55acb4831c 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -855,15 +855,15 @@ [% IF order.invoiceid %] [% IF CAN_user_acquisition %] - - [% order.invoice.invoicenumber | html %] + [% order.invoice.invoicenumber | html %]
[% ELSE %] - [% order.invoice.invoicenumber | html %] +
[% order.invoice.invoicenumber | html %]
[% END %] [% IF ( Koha.Preference('EDIFACT') && CAN_user_acquisition_edi_manage && order.invoice.message_id ) %] - EDI message +
EDI message
[% END %] [% END %] -- 2.39.5