diff options
Diffstat (limited to 'Bugzilla/Search.pm')
-rw-r--r-- | Bugzilla/Search.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index 6584f1080..82cbb9aa6 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -797,7 +797,8 @@ sub init { }, "^changedin," => sub { - $f = "(to_days(now()) - to_days(bugs.delta_ts))"; + $f = "(" . $dbh->sql_to_days('NOW()') . " - " . + $dbh->sql_to_days('bugs.delta_ts') . ")"; }, "^component,(?!changed)" => sub { |