From b9d2a832db6d2a75d6466a349b769e8285d1f0c8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?St=C3=A9phane=20Delaune?= Date: Mon, 10 Feb 2014 10:52:59 +0100 Subject: [PATCH] Bug 11730: ensure that C4::Charset loads C4::Context C4::Charset::SetMarcUnicodeFlag() fetches system preference values, so since it invokes routines in C4::Context, it should load the module. Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton --- C4/Charset.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/C4/Charset.pm b/C4/Charset.pm index 2968b5ee1a..acad92a4f4 100644 --- a/C4/Charset.pm +++ b/C4/Charset.pm @@ -22,6 +22,7 @@ use warnings; use MARC::Charset qw/marc8_to_utf8/; use Text::Iconv; +use C4::Context; use C4::Debug; use Unicode::Normalize; -- 2.20.1