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

(-)a/Koha/Cache.pm (-2 / +1 lines)
Lines 100-106 sub new { Link Here
100
        }
100
        }
101
    }
101
    }
102
102
103
    if ( can_load( modules => { 'Cache::Memory' => undef } ) ) {
103
    if ( can_load( modules => { 'Cache::Memory' => undef, nocache => 1 } ) ) {
104
        _initialize_memory($self);
104
        _initialize_memory($self);
105
        if ( $self->{'default_type'} eq 'memory'
105
        if ( $self->{'default_type'} eq 'memory'
106
            && defined( $self->{'memory_cache'} ) )
106
            && defined( $self->{'memory_cache'} ) )
107
- 

Return to bug 16104