diff options
-rw-r--r-- | perllib/FixMyStreet/Cobrand/Peterborough.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/Cobrand/Peterborough.pm b/perllib/FixMyStreet/Cobrand/Peterborough.pm index 32386a470..107534674 100644 --- a/perllib/FixMyStreet/Cobrand/Peterborough.pm +++ b/perllib/FixMyStreet/Cobrand/Peterborough.pm @@ -43,9 +43,10 @@ sub admin_user_domain { "peterborough.gov.uk" } around 'open311_config' => sub { my ($orig, $self, $row, $h, $params) = @_; - # remove the emergency category which is informational only + # remove categories which are informational only my $extra = $row->get_extra_fields; @$extra = grep { $_->{name} ne 'emergency' } @$extra; + @$extra = grep { $_->{name} ne 'private_land' } @$extra; $row->set_extra_fields(@$extra); $self->$orig($row, $h, $params); |