aboutsummaryrefslogtreecommitdiffstats
path: root/perllib
diff options
context:
space:
mode:
authorDave Arter <davea@mysociety.org>2017-02-01 15:00:03 +0000
committerMatthew Somerville <matthew-github@dracos.co.uk>2017-02-02 16:32:40 +0000
commit40076e8ea07de1d68dbfa1b33b48500a3c031634 (patch)
tree902bb772aa8d25f4ed3fd024c78d9618454cdd68 /perllib
parent64e43ba8d5d4223cdd0eb29bea289201a490a4de (diff)
Show ‘unable to fix’ state as ‘no further action’.
Bromley had this already in its update state change messages.
Diffstat (limited to 'perllib')
-rw-r--r--perllib/FixMyStreet/DB/Result/Comment.pm6
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'
}
}