View | Details | Raw Unified | Return to bug 31391
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/recalls/request.tt (+1 lines)
Lines 219-224 Link Here
219
            [% IF recalls.count %]
219
            [% IF recalls.count %]
220
                <form method="post" action="/cgi-bin/koha/recalls/request.pl">
220
                <form method="post" action="/cgi-bin/koha/recalls/request.pl">
221
                    <input type="hidden" name="op" value="cancel_multiple_recalls">
221
                    <input type="hidden" name="op" value="cancel_multiple_recalls">
222
                    <input type="hidden" name="biblionumber" value="[% biblio.biblionumber | html %]">
222
                    <input type="checkbox" id="select_all"> <span id="select_all_text">Select all</span>
223
                    <input type="checkbox" id="select_all"> <span id="select_all_text">Select all</span>
223
                    [% INCLUDE 'recalls.inc' %]
224
                    [% INCLUDE 'recalls.inc' %]
224
                    <fieldset class="action">
225
                    <fieldset class="action">
(-)a/recalls/request.pl (-1 / +1 lines)
Lines 46-51 if ( $op eq '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
}
50
}
50
elsif ( $op eq 'request' ) {
51
elsif ( $op eq 'request' ) {
51
52
52
- 

Return to bug 31391