[Bps-public-commit] r11610 - RT-Extension-Reports/html/Reports/Types

sunnavy at bestpractical.com sunnavy at bestpractical.com
Mon Apr 7 05:03:53 EDT 2008


Author: sunnavy
Date: Mon Apr  7 05:03:49 2008
New Revision: 11610

Modified:
   RT-Extension-Reports/html/Reports/Types/ActiveOrInactive
   RT-Extension-Reports/html/Reports/Types/General

Log:
tiny fix

Modified: RT-Extension-Reports/html/Reports/Types/ActiveOrInactive
==============================================================================
--- RT-Extension-Reports/html/Reports/Types/ActiveOrInactive	(original)
+++ RT-Extension-Reports/html/Reports/Types/ActiveOrInactive	Mon Apr  7 05:03:49 2008
@@ -145,7 +145,7 @@
             my $txns = $ticket->Transactions;
             $txns->Limit( FIELD => 'Type', VALUE => 'Status', ENTRYAGGREGATOR
                     => 'AND' );
-            $txns->Limit( FIELD => 'Created', VALUE => $tmp_date->Date . ' 23:59:59', ENTRYAGGREGATOR => 'AND', OPERATOR => '>=' );
+            $txns->Limit( FIELD => 'Created', VALUE => $tmp_date->Date . ' 23:59:59', ENTRYAGGREGATOR => 'AND', OPERATOR => '>' );
             $txns->OrderBy( FIELD => 'id' );
             my $txn = $txns->First;
             my $status;

Modified: RT-Extension-Reports/html/Reports/Types/General
==============================================================================
--- RT-Extension-Reports/html/Reports/Types/General	(original)
+++ RT-Extension-Reports/html/Reports/Types/General	Mon Apr  7 05:03:49 2008
@@ -134,7 +134,7 @@
             my $txns = $ticket->Transactions;
             $txns->Limit( FIELD => 'Type', VALUE => 'Status', ENTRYAGGREGATOR
                     => 'AND' );
-            $txns->Limit( FIELD => 'Created', VALUE => $tmp_date->Date . ' 23:59:59', ENTRYAGGREGATOR => 'AND', OPERATOR => '>=' );
+            $txns->Limit( FIELD => 'Created', VALUE => $tmp_date->Date . ' 23:59:59', ENTRYAGGREGATOR => 'AND', OPERATOR => '>' );
             $txns->OrderBy( FIELD => 'id' );
             my $txn = $txns->First;
             if ( $txn ) {   # we've changed tickets after $tmp_date's next day



More information about the Bps-public-commit mailing list