diff options
author | Matthew Somerville <matthew@mysociety.org> | 2020-04-07 17:28:00 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2020-04-07 17:28:00 +0100 |
commit | f73b65b4e159ee03dceb9f315e34ca631b079f29 (patch) | |
tree | edf5a3b79e2fb101dba4bbf2770f428a5b547a17 /perllib/FixMyStreet/Cobrand/TfL.pm | |
parent | 9b650ace02a612db28d0100d93dd64317a128953 (diff) | |
parent | f1d0814c8689d3dff2d6793b13a097568d9518ee (diff) |
Merge branch 'uk-he-cobrand-fix'
Diffstat (limited to 'perllib/FixMyStreet/Cobrand/TfL.pm')
-rw-r--r-- | perllib/FixMyStreet/Cobrand/TfL.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/Cobrand/TfL.pm b/perllib/FixMyStreet/Cobrand/TfL.pm index 72d1dbc86..b80929f25 100644 --- a/perllib/FixMyStreet/Cobrand/TfL.pm +++ b/perllib/FixMyStreet/Cobrand/TfL.pm @@ -112,7 +112,7 @@ sub base_url_for_report { sub categories_restriction { my ($self, $rs) = @_; - $rs = $rs->search( { 'body.name' => 'TfL' } ); + $rs = $rs->search( { 'body.name' => [ 'TfL', 'Highways England' ] } ); return $rs unless $self->{c}->stash->{categories_for_point}; # Admin page return $rs->search( { category => { -not_in => $self->_tfl_no_resend_categories } } ); } |