Bug 29049: Remove reference to optionloop

It's no longer used.

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
This commit is contained in:
Jonathan Druart 2021-09-28 14:17:36 +02:00 committed by Kyle Hall
parent 10bb3dfdea
commit 0c6b4afe02

View file

@ -376,19 +376,6 @@ foreach my $biblionumber (@biblionumbers) {
my $count = Koha::Holds->search( { biblionumber => $biblionumber } )->count(); my $count = Koha::Holds->search( { biblionumber => $biblionumber } )->count();
my $totalcount = $count; my $totalcount = $count;
# FIXME think @optionloop, is maybe obsolete, or must be switchable by a systeme preference fixed rank or not
# make priorities options
my @optionloop;
for ( 1 .. $count + 1 ) {
push(
@optionloop,
{
num => $_,
selected => ( $_ == $count + 1 ),
}
);
}
# adding a fixed value for priority options # adding a fixed value for priority options
my $fixedRank = $count+1; my $fixedRank = $count+1;
@ -713,7 +700,6 @@ foreach my $biblionumber (@biblionumbers) {
# display infos # display infos
$template->param( $template->param(
optionloop => \@optionloop,
bibitemloop => \@bibitemloop, bibitemloop => \@bibitemloop,
itemdata_enumchron => $itemdata_enumchron, itemdata_enumchron => $itemdata_enumchron,
itemdata_ccode => $itemdata_ccode, itemdata_ccode => $itemdata_ccode,