diff options
author | Struan Donald <struan@exo.org.uk> | 2011-07-22 18:51:44 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2011-07-22 18:51:44 +0100 |
commit | b7d1a38cb7419e7600c1d09f47b6a1f2f8cbcc3b (patch) | |
tree | 5feb0cd34a4a7ba4ef6e94fa23fbadc52e3b7bf1 | |
parent | b8fa05c1be5fbe2d61615659f7ecf09a05544d5a (diff) |
lichfield is also covered by staffordshire county council so need to tweak restrictions
-rw-r--r-- | perllib/FixMyStreet/Cobrand/Lichfield.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perllib/FixMyStreet/Cobrand/Lichfield.pm b/perllib/FixMyStreet/Cobrand/Lichfield.pm index 2114be46d..9865bfa7b 100644 --- a/perllib/FixMyStreet/Cobrand/Lichfield.pm +++ b/perllib/FixMyStreet/Cobrand/Lichfield.pm @@ -9,11 +9,11 @@ use URI::Escape; use mySociety::VotingArea; sub site_restriction { - return ( "and council='2434'", 'lichfield', { council => '2434' } ); + return ( "and council like '%2434%'", 'lichfield', { council => '2434' } ); } sub problems_clause { - return { council => '2434' }; + return { council => { like => '%2434%' } }; } sub problems { |