|
Lines 168-178
if ( $biblionumbers ) {
Link Here
|
| 168 |
push @biblionumbers, $input->multi_param('biblionumber'); |
168 |
push @biblionumbers, $input->multi_param('biblionumber'); |
| 169 |
} |
169 |
} |
| 170 |
|
170 |
|
| 171 |
my $clubcount = Koha::Clubs->search->count; |
|
|
| 172 |
my $multi_hold = @biblionumbers > 1; |
171 |
my $multi_hold = @biblionumbers > 1; |
| 173 |
$template->param( |
172 |
$template->param( |
| 174 |
multi_hold => $multi_hold, |
173 |
multi_hold => $multi_hold, |
| 175 |
clubcount => $clubcount, |
|
|
| 176 |
); |
174 |
); |
| 177 |
|
175 |
|
| 178 |
# If we have the borrowernumber because we've performed an action, then we |
176 |
# If we have the borrowernumber because we've performed an action, then we |
|
Lines 276-281
if ($club_hold && !$borrowernumber_hold && !$action) {
Link Here
|
| 276 |
); |
274 |
); |
| 277 |
} |
275 |
} |
| 278 |
|
276 |
|
|
|
277 |
unless ( $club_hold or $borrowernumber_hold ) { |
| 278 |
$template->param( clubcount => Koha::Clubs->search->count ); |
| 279 |
} |
| 280 |
|
| 279 |
$template->param( |
281 |
$template->param( |
| 280 |
messageborrower => $messageborrower, |
282 |
messageborrower => $messageborrower, |
| 281 |
messageclub => $messageclub |
283 |
messageclub => $messageclub |
| 282 |
- |
|
|