View | Details | Raw Unified | Return to bug 11944
Collapse All | Expand All

(-)a/admin/preferences.pl (-3 / +1 lines)
Lines 20-26 Link Here
20
use Modern::Perl;
20
use Modern::Perl;
21
21
22
use CGI qw ( -utf8 );
22
use CGI qw ( -utf8 );
23
use Encode;
24
use C4::Auth;
23
use C4::Auth;
25
use C4::Context;
24
use C4::Context;
26
use C4::Koha;
25
use C4::Koha;
Lines 55-61 sub GetTab { Link Here
55
        local_currency => $local_currency, # currency code is used, because we do not know how a given currency is formatted.
54
        local_currency => $local_currency, # currency code is used, because we do not know how a given currency is formatted.
56
    );
55
    );
57
56
58
    return YAML::Syck::Load( Encode::decode('UTF-8',$tab_template->output()) );
57
    return YAML::Syck::Load( $tab_template->output() );
59
}
58
}
60
59
61
sub _get_chunk {
60
sub _get_chunk {
62
- 

Return to bug 11944