diff options
-rw-r--r-- | FS/FS/part_event/Condition/times.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/part_event/Condition/times.pm b/FS/FS/part_event/Condition/times.pm index 46c2967bc..14ff23b9d 100644 --- a/FS/FS/part_event/Condition/times.pm +++ b/FS/FS/part_event/Condition/times.pm @@ -34,7 +34,7 @@ sub condition { ), } ); - scalar(@existing) <= $self->option('run_times'); + scalar(@existing) < $self->option('run_times'); } @@ -52,7 +52,7 @@ sub condition_sql { AND status != 'failed' )"; - "$existing <= $run_times"; + "$existing < $run_times"; } |