http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11222
--- Comment #9 from Zeno Tajoli <[email protected]> --- 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. _______________________________________________ Koha-bugs mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
