From 5b62714e47d5acd0a4c371024edacc02cfe6f5b5 Mon Sep 17 00:00:00 2001 From: Mark Tompsett Date: Sun, 18 Nov 2018 05:36:44 +0000 Subject: [PATCH] Bug 21853: (follow-up) to solve printpdf error Signed-off-by: Mark Tompsett Signed-off-by: Marcel de Rooy Theoretically this follow-up makes no difference. All modules only export printpdf and now we are just asking explicitly for printpdf. But if it resolves some exception on the rule.. Signed-off-by: Nick Clemens --- acqui/basketgroup.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acqui/basketgroup.pl b/acqui/basketgroup.pl index e1cba8495b..4cb1be1478 100755 --- a/acqui/basketgroup.pl +++ b/acqui/basketgroup.pl @@ -131,7 +131,7 @@ sub printbasketgrouppdf{ $pdfformat = "Koha::$pdfformat"; my $pdfformat_filepath = File::Spec->catfile(split /::/, $pdfformat) . '.pm'; require $pdfformat_filepath; - import $pdfformat; + import $pdfformat qw(printpdf); } else { print $input->header; -- 2.20.1