Browse Source

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 <chris@bigballofwax.co.nz>
Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com>
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
3.16.x
Stéphane Delaune 10 years ago
committed by Galen Charlton
parent
commit
b9d2a832db
  1. 1
      C4/Charset.pm

1
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;

Loading…
Cancel
Save