Skip to content
Snippets Groups Projects
Commit 09ceb88f authored by Demian Katz's avatar Demian Katz
Browse files

Fix bug: getNewItems doesn't return results for "yesterday"

- Resolves VUFIND-1159.
- Thanks to Jay Roos for the fix.
parent 90b6f3ea
No related merge requests found
......@@ -1008,7 +1008,7 @@ class Horizon extends AbstractBase
. " join bib_control bc "
. " on bc.bib# = nb.bib# "
. " and bc.staff_only = 0 "
. " where nb.date > "
. " where nb.date >= "
. " datediff(dd, '01JAN1970', getdate()) - {$daysOld} "
. "order by nb.date desc ";
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment