@@ -, +, @@ --- reports/guided_reports.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/reports/guided_reports.pl +++ a/reports/guided_reports.pl @@ -754,7 +754,7 @@ elsif ($phase eq 'Run this report'){ my $quoted = $sql_params[$i]; # if there are special regexp chars, we must \ them $split[$i*2+1] =~ s/(\||\?|\.|\*|\(|\)|\%)/\\$1/g; - if ($split[$i*2+1] =~ /|date>>/) { + if ($split[$i*2+1] =~ /\|date$/) { $quoted = output_pref({ dt => dt_from_string($quoted), dateformat => 'iso', dateonly => 1 }) if $quoted; } $quoted = C4::Context->dbh->quote($quoted); --