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

(-)a/C4/Installer/PerlDependencies.pm (+5 lines)
Lines 674-679 our $PERL_DEPS = { Link Here
674
        'required' => '0',
674
        'required' => '0',
675
        'min_ver'  => '3.9',
675
        'min_ver'  => '3.9',
676
    },
676
    },
677
    'Module::Load' => {
678
        'usage'    => 'Plugins',
679
        'required' => '0',
680
        'min_ver'  => '0.16',
681
    },
677
};
682
};
678
683
679
1;
684
1;
(-)a/Koha/Plugins/Base.pm (-2 / +2 lines)
Lines 20-32 package Koha::Plugins::Base; Link Here
20
use Modern::Perl;
20
use Modern::Perl;
21
21
22
use Module::Pluggable require => 1;
22
use Module::Pluggable require => 1;
23
use Module::Load;
23
24
24
use base qw{Module::Bundled::Files};
25
use base qw{Module::Bundled::Files};
25
26
26
use C4::Context;
27
use C4::Context;
27
use C4::Auth;
28
28
29
BEGIN {
29
BEGIN {
30
    load C4::Auth;
30
    push @INC, C4::Context->config("pluginsdir");
31
    push @INC, C4::Context->config("pluginsdir");
31
}
32
}
32
33
33
- 

Return to bug 9883