From f77f94847f2c550fe796fcea752837db3b7a4918 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 16 Nov 2021 15:46:02 +0100 Subject: [PATCH] Bug 29469: (bug 17600 follow-up) Fix tag approval/rejection from staff Usage: POSIX::exit(status) at /kohadevbox/koha/tags/review.pl line 72. at /usr/share/perl/5.28/Carp.pm line 289 Carp::croak('Usage: POSIX::exit(status)') called at /usr/lib/x86_64-linux-gnu/perl/5.28/POSIX.pm line 22 POSIX::usage('exit(status)') called at (eval 2066) line 3 Signed-off-by: Jonathan Druart --- tags/review.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tags/review.pl b/tags/review.pl index 1810081a25e..13934925673 100755 --- a/tags/review.pl +++ b/tags/review.pl @@ -20,7 +20,7 @@ # along with Koha; if not, see . use Modern::Perl; -use POSIX qw( ceil exit ); +use POSIX qw( ceil ); use CGI qw ( -utf8 ); use CGI::Cookie; # need to check cookies before having CGI parse the POST request use URI::Escape qw( uri_escape_utf8 ); -- 2.25.1