Lines 89-95
my $messages;
Link Here
|
89 |
my $exceeded_maxreserves; |
89 |
my $exceeded_maxreserves; |
90 |
my $exceeded_holds_per_record; |
90 |
my $exceeded_holds_per_record; |
91 |
my @failed_holds = $input->multi_param('failed_holds'); |
91 |
my @failed_holds = $input->multi_param('failed_holds'); |
92 |
my @successful_holds = $input->multi_param('successful_holds'); |
92 |
my @successful_holds = $input->param('successful_holds'); |
93 |
my $op = $input->param('op') || q{}; |
93 |
my $op = $input->param('op') || q{}; |
94 |
|
94 |
|
95 |
if ( $op eq 'cud-move' ) { |
95 |
if ( $op eq 'cud-move' ) { |
Lines 722-729
$template->param( biblionumbers => \@biblionumbers );
Link Here
|
722 |
$template->param( pickup => $pickup || C4::Context->userenv->{branch} ); |
722 |
$template->param( pickup => $pickup || C4::Context->userenv->{branch} ); |
723 |
|
723 |
|
724 |
$template->param(borrowernumber => $borrowernumber_hold); |
724 |
$template->param(borrowernumber => $borrowernumber_hold); |
725 |
|
725 |
$template->param( failed_holds => \@failed_holds, successful_holds => @successful_holds ); |
726 |
$template->param( failed_holds => \@failed_holds, successful_holds => \@successful_holds ); |
|
|
727 |
|
726 |
|
728 |
# printout the page |
727 |
# printout the page |
729 |
output_html_with_http_headers $input, $cookie, $template->output; |
728 |
output_html_with_http_headers $input, $cookie, $template->output; |
730 |
- |
|
|