diff options
-rw-r--r-- | perllib/FixMyStreet/Cobrand/Zurich.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perllib/FixMyStreet/Cobrand/Zurich.pm b/perllib/FixMyStreet/Cobrand/Zurich.pm index 882e6a5bc..c0fd802da 100644 --- a/perllib/FixMyStreet/Cobrand/Zurich.pm +++ b/perllib/FixMyStreet/Cobrand/Zurich.pm @@ -676,7 +676,7 @@ sub admin_report_edit { $self->set_problem_state($c, $problem, $state); my $template = ($state eq 'investigating') ? 'problem-wish.txt' : 'problem-external.txt'; _admin_send_email( $c, $template, $problem ); - $redirect = 1; + $redirect = 0; $closed++; } # set the external_message in extra, so that it can be edited again @@ -692,7 +692,7 @@ sub admin_report_edit { # if $state wasn't set, then we are simply closing the message as fixed $state ||= 'fixed - council'; _admin_send_email( $c, 'problem-closed.txt', $problem ); - $redirect = 1; + $redirect = 0; $moderated++; $closed++; } |