diff options
-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 { |