diff options
Diffstat (limited to 'perllib/FixMyStreet/DB/ResultSet/State.pm')
-rw-r--r-- | perllib/FixMyStreet/DB/ResultSet/State.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/perllib/FixMyStreet/DB/ResultSet/State.pm b/perllib/FixMyStreet/DB/ResultSet/State.pm index 3e6169aeb..9ab95ecaf 100644 --- a/perllib/FixMyStreet/DB/ResultSet/State.pm +++ b/perllib/FixMyStreet/DB/ResultSet/State.pm @@ -76,6 +76,9 @@ sub display { return 'third party responsibility' if $cobrand eq 'bromley'; return _("not the council's responsibility"); } + if ($cobrand && $cobrand eq 'oxfordshire' && $label eq 'unable to fix') { + return 'Investigation complete'; + } my ($state) = $rs->_filter(sub { $_->label eq $label }); return $label unless $state; $state->name($translate_now->{$label}) if $translate_now->{$label}; |