diff options
Diffstat (limited to 'bin/zurich/overdue-alert')
-rwxr-xr-x | bin/zurich/overdue-alert | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/zurich/overdue-alert b/bin/zurich/overdue-alert index f4fd0f4b7..7689c172f 100755 --- a/bin/zurich/overdue-alert +++ b/bin/zurich/overdue-alert @@ -32,9 +32,9 @@ exit if FixMyStreet::Cobrand::Zurich::is_public_holiday($now) or FixMyStreet::Co my $cobrand = FixMyStreet::Cobrand->get_class_for_moniker('zurich')->new(); my %bodies = map { $_->id => $_ } FixMyStreet::DB->resultset("Body")->all; -loop_through( 'alert-moderation-overdue.txt', 0, 1, [ 'unconfirmed' ] ); +loop_through( 'alert-moderation-overdue.txt', 0, 1, [ 'submitted' ] ); loop_through( 'alert-overdue.txt', 1, 6, 'in progress' ); -loop_through( 'alert-overdue.txt', 0, 6, ['confirmed', 'planned'] ); +loop_through( 'alert-overdue.txt', 0, 6, ['confirmed', 'feedback pending'] ); sub loop_through { my ( $template, $include_parent, $days, $states ) = @_; |