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

(-)a/Koha/Localization.pm (+1 lines)
Lines 21-26 use Koha::Database; Link Here
21
21
22
use base qw(Koha::Object);
22
use base qw(Koha::Object);
23
23
24
use Koha::Caches;
24
my $cache = Koha::Caches->get_instance();
25
my $cache = Koha::Caches->get_instance();
25
26
26
=head1 NAME
27
=head1 NAME
(-)a/Koha/MarcOverlayRule.pm (+1 lines)
Lines 19-24 use Modern::Perl; Link Here
19
19
20
use parent qw(Koha::Object);
20
use parent qw(Koha::Object);
21
21
22
use Koha::Caches;
22
my $cache = Koha::Caches->get_instance();
23
my $cache = Koha::Caches->get_instance();
23
24
24
=head1 NAME
25
=head1 NAME
(-)a/opac/svc/auth/googleopenidconnect (-2 / +1 lines)
Lines 34-40 use Modern::Perl; Link Here
34
use CGI      qw ( -utf8 escape );
34
use CGI      qw ( -utf8 escape );
35
use C4::Auth qw{ checkauth get_session get_template_and_user };
35
use C4::Auth qw{ checkauth get_session get_template_and_user };
36
use C4::Context;
36
use C4::Context;
37
use C4::Output;
37
use C4::Output qw{ output_html_with_http_headers };
38
use Koha::Patrons;
38
use Koha::Patrons;
39
39
40
use LWP::UserAgent;
40
use LWP::UserAgent;
41
- 

Return to bug 39365