From f99be9e61841c0501221056731581e3116cde9dd Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Tue, 3 Aug 2021 11:25:19 +0100 Subject: [PATCH] Bug 11175: (QA follow-up) We lost Encode somewhere This adds back `use Encode qw( decode )` into C4::XSLT.pm. We lost it somewhere along the way and broke the feature as it uses 'decode'. Signed-off-by: Martin Renvoize Signed-off-by: Andrew Nugged --- C4/XSLT.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/C4/XSLT.pm b/C4/XSLT.pm index 46f9f496e2..9d045ff45f 100644 --- a/C4/XSLT.pm +++ b/C4/XSLT.pm @@ -22,6 +22,7 @@ package C4::XSLT; # along with Koha; if not, see . use Modern::Perl; +use Encode qw(decode); use C4::Context; use C4::Koha qw( xml_escape ); -- 2.20.1