fix "time" parameter when querying events
authorMark Wells <mark@freeside.biz>
Wed, 29 Aug 2012 22:24:02 +0000 (15:24 -0700)
committerMark Wells <mark@freeside.biz>
Wed, 29 Aug 2012 22:24:02 +0000 (15:24 -0700)
FS/FS/part_event.pm

index 62f16fa..b7371c9 100644 (file)
@@ -306,8 +306,8 @@ sub targets {
   });
   my @tested_objects;
   foreach my $object ( @objects ) {
   });
   my @tested_objects;
   foreach my $object ( @objects ) {
-    my $cust_event = $self->new_cust_event($object);
-    next unless $cust_event->test_conditions('time' => $time);
+    my $cust_event = $self->new_cust_event($object, 'time' => $time);
+    next unless $cust_event->test_conditions;
 
     $object->set('cust_event', $cust_event);
     push @tested_objects, $object;
 
     $object->set('cust_event', $cust_event);
     push @tested_objects, $object;