Bug 7683: Fix a shift in date filter indexes
Date filter indexes are 13, 14, 15, 16, not 14, 15, 16, 17 Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel@gmail.com> Works, no koha-qa errors (some message for the deleted file) Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Brendan A Gallagher <brendan@bywatersolutions.com>
This commit is contained in:
parent
b8848f6aed
commit
45e3b57fcd
1 changed files with 1 additions and 1 deletions
|
@ -231,10 +231,10 @@ sub calculate {
|
|||
}
|
||||
}
|
||||
|
||||
@$filters[13] = C4::Dates->new(@$filters[13])->output('iso') if @$filters[13];
|
||||
@$filters[14] = C4::Dates->new(@$filters[14])->output('iso') if @$filters[14];
|
||||
@$filters[15] = C4::Dates->new(@$filters[15])->output('iso') if @$filters[15];
|
||||
@$filters[16] = C4::Dates->new(@$filters[16])->output('iso') if @$filters[16];
|
||||
@$filters[17] = C4::Dates->new(@$filters[17])->output('iso') if @$filters[17];
|
||||
|
||||
my @linefilter;
|
||||
$linefilter[0] = @$filters[0] if ( $line =~ /items\.itemcallnumber/ );
|
||||
|
|
Loading…
Reference in a new issue