Bug 32863: Fix cataloguing/value_builder/unimarc_field_140.pl
[srvgit] / authorities / merge_ajax.pl
index 6ed4278..b4e489b 100755 (executable)
@@ -4,14 +4,14 @@ use Modern::Perl;
 
 use CGI qw ( -utf8 );
 use CGI::Cookie; # need to check cookies before CGI parses the POST request
-use JSON;
+use JSON qw( encode_json );
 
 use C4::Context;
-use C4::Auth qw/check_cookie_auth/;
-use C4::AuthoritiesMarc;
+use C4::Auth qw( check_cookie_auth );
+use C4::AuthoritiesMarc qw( GetTagsLabels );
 
 my %cookies = CGI::Cookie->fetch;
-my ($auth_status, $sessionID) = check_cookie_auth($cookies{'CGISESSID'}->value, { editcatalogue => 'edit_catalogue' });
+my ($auth_status) = check_cookie_auth($cookies{'CGISESSID'}->value, { editcatalogue => 'edit_catalogue' });
 my $reply = CGI->new;
 if ($auth_status ne "ok") {
     print $reply->header(-type => 'text/html');