From 26a85e954f9bc2872e2de42b3787afea53cdd25b 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 (cherry picked from commit b9d2a832db6d2a75d6466a349b769e8285d1f0c8) Signed-off-by: Fridolin Somers Signed-off-by: Kyle M Hall (cherry picked from commit acec28bc4c9319da4490eb940ef54d0875c97c48) --- C4/Charset.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/C4/Charset.pm b/C4/Charset.pm index f8ddd63627..f8b38174dd 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.39.5