@@ -, +, @@ 1) Grep for placerequest.pl in the source code and check that request.tt is the only place where the type parameter is passed. --- koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt | 2 -- reserve/placerequest.pl | 3 +-- 2 files changed, 1 insertion(+), 4 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt @@ -441,8 +441,6 @@
- - [% FOREACH biblionumber IN biblionumbers %] [% END %] --- a/reserve/placerequest.pl +++ a/reserve/placerequest.pl @@ -42,7 +42,6 @@ my $notes = $input->param('notes'); my $branch = $input->param('pickup'); my $startdate = $input->param('reserve_date') || ''; my @rank = $input->multi_param('rank-request'); -my $type = $input->param('type'); my $title = $input->param('title'); my $checkitem = $input->param('checkitem'); my $expirationdate = $input->param('expiration_date'); @@ -66,7 +65,7 @@ foreach my $bibnum (@biblionumbers) { my $found; -if ( $type eq 'str8' && $patron ) { +if ( $patron ) { foreach my $biblionumber ( keys %bibinfos ) { --