Bug 18296: Remove perlcritic error (request.pl)
"$itemnumbers_of_biblioitem" is declared but not used at line 314, column 5. Unused variables clutter code and make it harder to read. (Severity: 3) Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
parent
88e50b6a68
commit
b5b046599b
1 changed files with 1 additions and 1 deletions
|
@ -311,7 +311,7 @@ foreach my $biblionumber (@biblionumbers) {
|
|||
|
||||
## Here we go backwards again to create hash of biblioitemnumber to itemnumbers,
|
||||
## when by definition all of the itemnumber have the same biblioitemnumber
|
||||
my ( $itemnumbers_of_biblioitem, $iteminfos_of);
|
||||
my ( $iteminfos_of );
|
||||
while ( my $item = $items->next ) {
|
||||
$item = $item->unblessed;
|
||||
my $biblioitemnumber = $item->{biblioitemnumber};
|
||||
|
|
Loading…
Reference in a new issue