diff options
author | Dave Arter <davea@mysociety.org> | 2019-08-08 15:33:31 +0100 |
---|---|---|
committer | Dave Arter <davea@mysociety.org> | 2019-08-18 20:30:22 +0100 |
commit | 2de5f6d20e8aed1c173f93a3265fd23de578b5c8 (patch) | |
tree | f07ed62c0d499fd5efa7d2498075deb7968306f6 /perllib/FixMyStreet/Cobrand/Northamptonshire.pm | |
parent | fb26467ee1c49dae6b46e93757d4b19903676bd8 (diff) |
[Westminster] Disallow TfL categories on cobrand
Also tidies up the categories_restriction query for Northamptonshire.
Diffstat (limited to 'perllib/FixMyStreet/Cobrand/Northamptonshire.pm')
-rw-r--r-- | perllib/FixMyStreet/Cobrand/Northamptonshire.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/Cobrand/Northamptonshire.pm b/perllib/FixMyStreet/Cobrand/Northamptonshire.pm index 533dad5d3..f16700820 100644 --- a/perllib/FixMyStreet/Cobrand/Northamptonshire.pm +++ b/perllib/FixMyStreet/Cobrand/Northamptonshire.pm @@ -27,7 +27,7 @@ sub disambiguate_location { sub categories_restriction { my ($self, $rs) = @_; - return $rs->search( [ { 'body.name' => 'Northamptonshire County Council' } ], { join => { body => 'body_areas' } }); + return $rs->search( { 'body.name' => 'Northamptonshire County Council' }, { join => 'body' }); } sub send_questionnaires { 0 } |