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

(-)a/C4/Context.pm (-1 / +1 lines)
Lines 486-491 was no syspref of the name. Link Here
486
sub delete_preference {
486
sub delete_preference {
487
    my ( $self, $var ) = @_;
487
    my ( $self, $var ) = @_;
488
488
489
    $var = lc $var;
489
    if ( Koha::Config::SysPrefs->find( $var )->delete ) {
490
    if ( Koha::Config::SysPrefs->find( $var )->delete ) {
490
        if ( $use_syspref_cache ) {
491
        if ( $use_syspref_cache ) {
491
            my $syspref_cache = Koha::Caches->get_instance('syspref');
492
            my $syspref_cache = Koha::Caches->get_instance('syspref');
492
- 

Return to bug 36793