diff options
author | Struan Donald <struan@exo.org.uk> | 2019-10-17 11:30:42 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2019-10-18 09:23:38 +0100 |
commit | a23084bfca7fc7ed4d91d0c6d79689c0d6979de4 (patch) | |
tree | 855bf55656309b99128cca63bcf41c9ab46f8d2c /perllib/FixMyStreet | |
parent | b2a98a09c00a918b472ef5c97f48aa68b867571b (diff) |
[IsleOfWight] do not mention council in not responsible
Use Island Roads in place of council in not responsible message.
Fixes mysociety/fixmystreet-freshdesk#93
Diffstat (limited to 'perllib/FixMyStreet')
-rw-r--r-- | perllib/FixMyStreet/DB/ResultSet/State.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perllib/FixMyStreet/DB/ResultSet/State.pm b/perllib/FixMyStreet/DB/ResultSet/State.pm index 9ab95ecaf..cb894005f 100644 --- a/perllib/FixMyStreet/DB/ResultSet/State.pm +++ b/perllib/FixMyStreet/DB/ResultSet/State.pm @@ -74,6 +74,7 @@ sub display { return $unchanging->{$label} if $unchanging->{$label}; if ($cobrand && $label eq 'not responsible') { return 'third party responsibility' if $cobrand eq 'bromley'; + return "not Island Roads' responsibility" if $cobrand eq 'isleofwight'; return _("not the council's responsibility"); } if ($cobrand && $cobrand eq 'oxfordshire' && $label eq 'unable to fix') { |