diff options
author | matthew <matthew> | 2008-11-17 18:01:26 +0000 |
---|---|---|
committer | matthew <matthew> | 2008-11-17 18:01:26 +0000 |
commit | 2bf97de78398bf8fc293282406365833cc763151 (patch) | |
tree | b68be33a5f776c6cbb4e162b5fa998b20255651f | |
parent | 3ef4c6d42795f8b2eeba87c5182850e04187b697 (diff) |
Typo.
-rwxr-xr-x | web/reports.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/reports.cgi b/web/reports.cgi index 45194e32e..91d90d7de 100755 --- a/web/reports.cgi +++ b/web/reports.cgi @@ -7,7 +7,7 @@ # Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved. # Email: matthew@mysociety.org. WWW: http://www.mysociety.org # -# $Id: reports.cgi,v 1.22 2008-11-17 17:52:16 matthew Exp $ +# $Id: reports.cgi,v 1.23 2008-11-17 18:01:26 matthew Exp $ use strict; use Standard; @@ -108,7 +108,7 @@ sub main { %councils = ( $one_council => 1 ); } else { # Show all councils on main report page - $ignore = 'LGD'; + my $ignore = 'LGD'; $ignore .= '|CTY' if $q->{site} eq 'emptyhomes'; my @types = grep { !/$ignore/ } @$mySociety::VotingArea::council_parent_types; %councils = map { $_ => 1 } @{mySociety::MaPit::get_areas_by_type(\@types)}; |