diff options
author | Matthew Somerville <matthew@mysociety.org> | 2019-06-10 12:27:44 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2019-06-11 16:19:35 +0100 |
commit | 246b05847931cbb48ed99daa799636e4477e5f4d (patch) | |
tree | d143d9be355252d8011e6f3e2536a5d8724a36b9 /perllib/FixMyStreet/DB/Result/Problem.pm | |
parent | 70c6df7a5ea8133594df4cfc6aa4c10dc27b2d1b (diff) |
[Hounslow] Show external ID on /report to staff.
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 dc45091ee..c1608b35d 100644 --- a/perllib/FixMyStreet/DB/Result/Problem.pm +++ b/perllib/FixMyStreet/DB/Result/Problem.pm @@ -755,7 +755,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->send_method_used && $self->to_body_named('Oxfordshire|Lincolnshire')) { + if ($self->external_id && $self->to_body_named('Oxfordshire|Lincolnshire')) { return 1; } return 0; |