@@ -, +, @@ --- reserve/request.pl | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) --- a/reserve/request.pl +++ a/reserve/request.pl @@ -168,11 +168,9 @@ if ( $biblionumbers ) { push @biblionumbers, $input->multi_param('biblionumber'); } -my $clubcount = Koha::Clubs->search->count; my $multi_hold = @biblionumbers > 1; $template->param( - multi_hold => $multi_hold, - clubcount => $clubcount, + multi_hold => $multi_hold, ); # If we have the borrowernumber because we've performed an action, then we @@ -276,6 +274,10 @@ if ($club_hold && !$borrowernumber_hold && !$action) { ); } +unless ( $club_hold or $borrowernumber_hold ) { + $template->param( clubcount => Koha::Clubs->search->count ); +} + $template->param( messageborrower => $messageborrower, messageclub => $messageclub --