diff options
Diffstat (limited to 'perllib/Problems.pm')
-rw-r--r-- | perllib/Problems.pm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/perllib/Problems.pm b/perllib/Problems.pm index a833f9f27..c767c7abf 100644 --- a/perllib/Problems.pm +++ b/perllib/Problems.pm @@ -6,7 +6,7 @@ # Copyright (c) 2008 UK Citizens Online Democracy. All rights reserved. # Email: matthew@mysociety.org; WWW: http://www.mysociety.org/ # -# $Id: Problems.pm,v 1.1 2008-05-20 14:39:01 matthew Exp $ +# $Id: Problems.pm,v 1.2 2008-05-21 15:48:06 matthew Exp $ # package Problems; @@ -18,7 +18,10 @@ use mySociety::Web qw/ent/; my $site_restriction = ''; sub set_site_restriction { my $site = shift; - $site_restriction = ' and council=2260 ' + $site_restriction = " and council=2260 and category in + ('Abandoned vehicles', 'Discarded hypodermic needles', 'Dog fouling', + 'Flytipping', 'Graffiti', 'Lighting (e.g. security lights)', 'Litter', + 'Neighbourhood noise') " if $site eq 'scambs'; } |