Lines 25-31
use Koha::Object;
Link Here
|
25 |
use Koha::Object::Limit::Library; |
25 |
use Koha::Object::Limit::Library; |
26 |
|
26 |
|
27 |
# Bug 35959 - Avoid Inconsistent hierarchy warn by replacing use base line |
27 |
# Bug 35959 - Avoid Inconsistent hierarchy warn by replacing use base line |
28 |
push @Koha::AuthorisedValue::ISA, qw(Koha::Object Koha::Object::Limit::Library); |
28 |
@Koha::AuthorisedValue::ISA = qw(Koha::Object Koha::Object::Limit::Library); |
29 |
|
29 |
|
30 |
my $cache = Koha::Caches->get_instance(); |
30 |
my $cache = Koha::Caches->get_instance(); |
31 |
|
31 |
|