From 09ceb88fd97fb33048cfadd2e8c28c8559d521b5 Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Tue, 29 Mar 2016 16:07:41 -0400 Subject: [PATCH] Fix bug: getNewItems doesn't return results for "yesterday" - Resolves VUFIND-1159. - Thanks to Jay Roos for the fix. --- module/VuFind/src/VuFind/ILS/Driver/Horizon.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/VuFind/src/VuFind/ILS/Driver/Horizon.php b/module/VuFind/src/VuFind/ILS/Driver/Horizon.php index f034e5e0b83..fd87a4fad0f 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/Horizon.php +++ b/module/VuFind/src/VuFind/ILS/Driver/Horizon.php @@ -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 "; -- GitLab