From 95c4f9367149913057738243ea28856cb44d5189 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 15 Feb 2024 12:32:25 +0000 Subject: [PATCH] Bug 34478: Basket group export CSV option should not check cud-op The Export CSV operation is GET and uses op=export, so the script should not check for "cud-op." Signed-off-by: Jonathan Druart --- acqui/basketgroup.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acqui/basketgroup.pl b/acqui/basketgroup.pl index c667b3605c..e785bfd545 100755 --- a/acqui/basketgroup.pl +++ b/acqui/basketgroup.pl @@ -324,7 +324,7 @@ if ( $op eq "add_form" ) { my $basketgroupid = $input->param('basketgroupid'); printbasketgrouppdf($basketgroupid); exit; -}elsif ( $op eq "cud-export" ) { +}elsif ( $op eq "export" ) { # # export a closed basketgroup in csv # -- 2.39.5