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

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

Return to bug 11944