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

(-)a/misc/admin/koha-preferences (+1 lines)
Lines 125-130 sub SetPreferences { Link Here
125
        _set_preference( $row->{'variable'}, $preferences{$row->{'variable'}} );
125
        _set_preference( $row->{'variable'}, $preferences{$row->{'variable'}} );
126
    }
126
    }
127
127
128
    # FIXME This may be not needed
128
    C4::Context->clear_syspref_cache();
129
    C4::Context->clear_syspref_cache();
129
}
130
}
130
131
(-)a/misc/plack/koha.psgi (-2 lines)
Lines 12-18 use CGI qw(-utf8 ); # we will loose -utf8 under plack Link Here
12
    *CGI::new = sub {
12
    *CGI::new = sub {
13
        my $q = $old_new->( @_ );
13
        my $q = $old_new->( @_ );
14
        $CGI::PARAM_UTF8 = 1;
14
        $CGI::PARAM_UTF8 = 1;
15
        C4::Context->clear_syspref_cache();
16
        return $q;
15
        return $q;
17
    };
16
    };
18
}
17
}
19
- 

Return to bug 15970