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

(-)a/admin/preferences.pl (-2 / +2 lines)
Lines 21-26 use strict; Link Here
21
use warnings;
21
use warnings;
22
22
23
use CGI;
23
use CGI;
24
use Encode;
24
use C4::Auth;
25
use C4::Auth;
25
use C4::Context;
26
use C4::Context;
26
use C4::Koha;
27
use C4::Koha;
Lines 54-60 sub GetTab { Link Here
54
        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.
55
    );
56
    );
56
57
57
    return YAML::Syck::Load( $tab_template->output() );
58
    return YAML::Syck::Load( Encode::decode('UTF-8',$tab_template->output()) );
58
}
59
}
59
60
60
sub _get_chunk {
61
sub _get_chunk {
61
- 

Return to bug 12279