diff options
Diffstat (limited to 'perllib')
-rw-r--r-- | perllib/FixMyStreet/Cobrand/Zurich.pm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/perllib/FixMyStreet/Cobrand/Zurich.pm b/perllib/FixMyStreet/Cobrand/Zurich.pm index 80874e3f5..6cc6bdcdb 100644 --- a/perllib/FixMyStreet/Cobrand/Zurich.pm +++ b/perllib/FixMyStreet/Cobrand/Zurich.pm @@ -606,6 +606,11 @@ sub admin_report_edit { my $old_closure_state = $problem->get_extra_metadata('closure_status'); + # update the public update from DM + if (my $update = $c->req->param('status_update')) { + $problem->set_extra_metadata(public_response => $update); + } + if ( ($state eq 'confirmed') && $new_cat @@ -728,11 +733,6 @@ sub admin_report_edit { $problem->latitude( $c->get_param('latitude') ); $problem->longitude( $c->get_param('longitude') ); - # update the public update from DM - if (my $update = $c->req->param('status_update')) { - $problem->set_extra_metadata(public_response => $update); - } - # send external_message if provided and state is *now* Wish|Extern # e.g. was already, or was set in the Rueckmeldung ausstehend clause above. if ( my $external_message = $c->req->params->{external_message} |