@@ -, +, @@ --- labels/label-item-search.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/labels/label-item-search.pl +++ a/labels/label-item-search.pl @@ -88,7 +88,7 @@ if ( $op eq "do_search" ) { "acqdate(" . $datefrom . '-)'; } else { $ccl_query .= ' and ' if $ccl_textbox; - $ccl_query .= "acqdate,st-date-normalized,ge=" . $datefrom; + $ccl_query .= "acqdate,ge,st-date-normalized=" . $datefrom; } } } @@ -102,7 +102,7 @@ if ( $op eq "do_search" ) { $ccl_query .= "acqdate(-" . $dateto . ')'; } else { $ccl_query .= ' and ' if ( $ccl_textbox || $datefrom ); - $ccl_query .= "acqdate,st-date-normalized,le=" . $dateto; + $ccl_query .= "acqdate,le,st-date-normalized=" . $dateto; } } } --