Lines 46-51
if ( $op eq 'cud-cancel_multiple_recalls' ) {
Link Here
|
46 |
foreach my $id (@recall_ids) { |
46 |
foreach my $id (@recall_ids) { |
47 |
Koha::Recalls->find($id)->set_cancelled; |
47 |
Koha::Recalls->find($id)->set_cancelled; |
48 |
} |
48 |
} |
|
|
49 |
print $input->redirect( '/cgi-bin/koha/recalls/request.pl?biblionumber=' . $biblionumber ); |
49 |
} elsif ( $op eq 'cud-request' ) { |
50 |
} elsif ( $op eq 'cud-request' ) { |
50 |
|
51 |
|
51 |
if ( C4::Context->preference('UseRecalls') |
52 |
if ( C4::Context->preference('UseRecalls') |
52 |
- |
|
|