diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2017-02-03 15:02:33 +0000 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2017-02-03 15:02:33 +0000 |
commit | ef93bf3f103c0ecddf0eb912d4d4f2159a7867b3 (patch) | |
tree | 9522a5c46f0ff4b3f78ed1bb65a7350381cc1fa8 /perllib/FixMyStreet/DB | |
parent | 8eb377e1fc9153f4ec05c37988502f764e1784fd (diff) | |
parent | afb90c54e9bfbabf9adc5fe0c66db38b0f406781 (diff) |
Merge branch 'version-2.0.2'v2.0.2
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' } } |