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 <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
parent
62d9f73e9e
commit
95c4f93671
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue