minor fixes (odd/even lines bug)
This commit is contained in:
parent
bc2b9b7c6e
commit
1a5963a30a
1 changed files with 2 additions and 2 deletions
|
@ -244,8 +244,8 @@ sub catalogsearch {
|
|||
$newline{biblionumber} = $oldbiblionumber;
|
||||
my @CNresults2= @CNresults;
|
||||
$newline{CN} = \@CNresults2;
|
||||
$newline{'even'} = 1 if $counter % 2 == 0;
|
||||
$newline{'odd'} = 1 if $counter % 2 == 1;
|
||||
$newline{'even'} = 1 if $#finalresult % 2 == 0;
|
||||
$newline{'odd'} = 1 if $#finalresult % 2 == 1;
|
||||
@CNresults = ();
|
||||
push @finalresult, \%newline;
|
||||
$totalitems=0;
|
||||
|
|
Loading…
Reference in a new issue