diff options
author | Dave Arter <davea@mysociety.org> | 2017-02-01 15:00:03 +0000 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2017-02-02 16:32:40 +0000 |
commit | 40076e8ea07de1d68dbfa1b33b48500a3c031634 (patch) | |
tree | 902bb772aa8d25f4ed3fd024c78d9618454cdd68 /perllib/FixMyStreet/DB | |
parent | 64e43ba8d5d4223cdd0eb29bea289201a490a4de (diff) |
Show ‘unable to fix’ state as ‘no further action’.
Bromley had this already in its update state change messages.
Diffstat (limited to 'perllib/FixMyStreet/DB')
-rw-r--r-- | perllib/FixMyStreet/DB/Result/Comment.pm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/perllib/FixMyStreet/DB/Result/Comment.pm b/perllib/FixMyStreet/DB/Result/Comment.pm index fb41bc7f0..a15400cc1 100644 --- a/perllib/FixMyStreet/DB/Result/Comment.pm +++ b/perllib/FixMyStreet/DB/Result/Comment.pm @@ -281,7 +281,7 @@ sub meta_line { } elsif ($state eq 'fixed') { $update_state = _( 'marked as fixed' ) } elsif ($state eq 'unable to fix') { - $update_state = _( 'marked as unable to fix' ) + $update_state = _( 'marked as no further action' ) } elsif ($state eq 'not responsible') { $update_state = _( "marked as not the council's responsibility" ) } elsif ($state eq 'duplicate') { @@ -291,9 +291,7 @@ sub meta_line { } if ($c->cobrand->moniker eq 'bromley' || $self->problem->bodies_str eq '2482') { - if ($state eq 'unable to fix') { - $update_state = 'marked as no further action'; - } elsif ($state eq 'not responsible') { + if ($state eq 'not responsible') { $update_state = 'marked as third party responsibility' } } |