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 47-53 Link Here
47
47
48
    <h1>Recalls</h1>
48
    <h1>Recalls</h1>
49
49
50
=======
51
    <h2>Place a recall on [% INCLUDE 'biblio-title.inc' link = 1 %]</h2>
50
    <h2>Place a recall on [% INCLUDE 'biblio-title.inc' link = 1 %]</h2>
52
51
53
    [% IF patron %]
52
    [% IF patron %]
(-)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