diff options
author | Struan Donald <struan@exo.org.uk> | 2019-08-21 17:10:46 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2019-09-27 17:35:15 +0100 |
commit | 6041331bceb459c555150da863509a25edff401d (patch) | |
tree | 4dc92d4d2a6db2aa339bd298c6abeefdfbaaa185 /perllib/FixMyStreet/DB/Result/Problem.pm | |
parent | 225574a9ab1edae754301190997f31e55b43d096 (diff) |
[IsleOfWight] display external id as ref no
Fixes mysociety/fixmystreet-commercial#1522
Diffstat (limited to 'perllib/FixMyStreet/DB/Result/Problem.pm')
-rw-r--r-- | perllib/FixMyStreet/DB/Result/Problem.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/DB/Result/Problem.pm b/perllib/FixMyStreet/DB/Result/Problem.pm index 8159d7251..08b768719 100644 --- a/perllib/FixMyStreet/DB/Result/Problem.pm +++ b/perllib/FixMyStreet/DB/Result/Problem.pm @@ -751,7 +751,7 @@ sub defect_types { # Note: this only makes sense when called on a problem that has been sent! sub can_display_external_id { my $self = shift; - if ($self->external_id && $self->to_body_named('Oxfordshire|Lincolnshire')) { + if ($self->external_id && $self->to_body_named('Oxfordshire|Lincolnshire|Isle of Wight')) { return 1; } return 0; |