[Koha-bugs] [Bug 11222] A regression on label-item-search.pl done by Bug 9239

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Thu Nov 14 21:56:06 CET 2013


http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11222

--- Comment #9 from Zeno Tajoli <z.tajoli at cineca.it> ---
Last option:
do you use QueryParser ?
Because with QueryParser on the bug is not present.
See from master, labels/label-item-search.pl:

94  $dateto = C4::Dates->new($dateto);
95  if ($QParser) {
96      $ccl_query .= ' && ' if ( $ccl_textbox || $datefrom );
97      $ccl_query .= "acqdate(-" . $dateto->output("iso") . ')';
98  } else {
99      $ccl_query .= ' and ' if ( $ccl_textbox || $datefrom );
100     $ccl_query .= "acqdate,st-date-normalized,le=" .
$datefrom->output("iso");
101 }

In fact line 97 [QueryParser on] is OK.
Line 100 [QueryParser off] has the bug

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list