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

(-)a/acqui/check_uniqueness.pl (+1 lines)
Lines 35-40 use CGI qw ( -utf8 ); Link Here
35
use JSON qw( to_json );
35
use JSON qw( to_json );
36
use C4::Output qw( output_with_http_headers );
36
use C4::Output qw( output_with_http_headers );
37
use C4::Items qw( SearchItems );
37
use C4::Items qw( SearchItems );
38
use C4::Auth   qw( check_cookie_auth );
38
39
39
my $input = CGI->new;
40
my $input = CGI->new;
40
my ($auth_status) =
41
my ($auth_status) =
(-)a/catalogue/image.pl (+1 lines)
Lines 27-32 use Modern::Perl; Link Here
27
27
28
use CGI qw ( -utf8 );
28
use CGI qw ( -utf8 );
29
use C4::Context;
29
use C4::Context;
30
use C4::Auth qw( check_cookie_auth );
30
use Koha::Biblios;
31
use Koha::Biblios;
31
use Koha::CoverImages;
32
use Koha::CoverImages;
32
33
(-)a/labels/label-create-csv.pl (+1 lines)
Lines 24-29 use CGI qw ( -utf8 ); Link Here
24
use Text::CSV_XS;
24
use Text::CSV_XS;
25
25
26
use C4::Labels;
26
use C4::Labels;
27
use C4::Auth qw( check_cookie_auth );
27
28
28
my $cgi = CGI->new;
29
my $cgi = CGI->new;
29
my ($auth_status) =
30
my ($auth_status) =
(-)a/labels/label-create-xml.pl (+1 lines)
Lines 24-29 use CGI qw ( -utf8 ); Link Here
24
use XML::Simple;
24
use XML::Simple;
25
25
26
use C4::Labels;
26
use C4::Labels;
27
use C4::Auth qw( check_cookie_auth );
27
28
28
my $cgi = CGI->new;
29
my $cgi = CGI->new;
29
my ($auth_status) =
30
my ($auth_status) =
(-)a/serials/lateissues-export.pl (-1 / +1 lines)
Lines 21-26 use C4::Auth; Link Here
21
use C4::Serials qw( GetLateOrMissingIssues updateClaim );
21
use C4::Serials qw( GetLateOrMissingIssues updateClaim );
22
use C4::Output;
22
use C4::Output;
23
use C4::Context;
23
use C4::Context;
24
use C4::Auth qw( check_cookie_auth );
24
25
25
use Koha::CsvProfiles;
26
use Koha::CsvProfiles;
26
27
27
- 

Return to bug 36511