[Rt-commit] r19325 - in rt/3.8/trunk: .

alexmv at bestpractical.com alexmv at bestpractical.com
Wed Apr 22 15:27:34 EDT 2009


Author: alexmv
Date: Wed Apr 22 15:27:33 2009
New Revision: 19325

Modified:
   rt/3.8/trunk/   (props changed)
   rt/3.8/trunk/lib/RT/Tickets_Overlay.pm

Log:
 r44474 at kohr-ah:  chmrr | 2009-04-22 15:26:41 -0400
 When doing Date = '2009-04-22', we want to check < the end of the day, not <=, soas to not include midnight


Modified: rt/3.8/trunk/lib/RT/Tickets_Overlay.pm
==============================================================================
--- rt/3.8/trunk/lib/RT/Tickets_Overlay.pm	(original)
+++ rt/3.8/trunk/lib/RT/Tickets_Overlay.pm	Wed Apr 22 15:27:33 2009
@@ -536,7 +536,7 @@
 
         $sb->_SQLLimit(
             FIELD    => $meta->[1],
-            OPERATOR => "<=",
+            OPERATOR => "<",
             VALUE    => $dayend,
             @rest,
             ENTRYAGGREGATOR => 'AND',


More information about the Rt-commit mailing list