From ae77f8ba4740562acd7c5ccd66471e154ef326c0 Mon Sep 17 00:00:00 2001 From: Andrew Isherwood Date: Thu, 17 May 2018 11:29:49 +0100 Subject: [PATCH] Bug 20772: Fix malformed class name Supplier metadata elements have a dynamically formed class name, part of the name is formed from the metadata key, this breaks if the key has a space, so we replace spaces Signed-off-by: Barry Cannon Signed-off-by: Katrin Fischer --- koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt index 139b305..53f0f16 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt @@ -560,7 +560,7 @@

Details from supplier ([% request.backend | html %])

[% FOREACH meta IN request.metadata %] -
+
[% meta.key | html %]: [% meta.value | html %]
-- 2.1.4