diff --git a/labels/label-item-search.pl b/labels/label-item-search.pl index 07924c8..511b2b4 100755 --- a/labels/label-item-search.pl +++ b/labels/label-item-search.pl @@ -89,7 +89,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,st-date-normalized,ge>=" . $datefrom; } } } @@ -103,7 +103,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,st-date-normalized,le<=" . $dateto; } } }