diff options
author | Matthew Somerville <matthew@fury.ukcod.org.uk> | 2011-02-16 19:28:37 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@fury.ukcod.org.uk> | 2011-02-16 19:28:37 +0000 |
commit | 7795e8884f7ca313e44aec7983d511a21a3ee524 (patch) | |
tree | ffb3dbcefea50db01befd4e6c0a37014b4925288 /web/reports.cgi | |
parent | befd99b8e4ae3d2f60761dc9c658f3b6d6576054 (diff) |
Alert page working, and dealing with Oslo being both kommune and fylke.
Diffstat (limited to 'web/reports.cgi')
-rwxr-xr-x | web/reports.cgi | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/web/reports.cgi b/web/reports.cgi index 12e3a3014..9d0787450 100755 --- a/web/reports.cgi +++ b/web/reports.cgi @@ -198,6 +198,7 @@ sub main { } print '<th>' . _('Recently fixed') . '</th><th>' . _('Older fixed') . '</th></tr>'; foreach (sort { $areas_info->{$a}->{name} cmp $areas_info->{$b}->{name} } keys %$areas_info) { + next if mySociety::Config::get('COUNTRY') eq 'NO' && $_ eq 301; # Only want one Oslo print '<tr align="center"'; ++$c; if (mySociety::Config::get('COUNTRY') eq 'GB' && $areas_info->{$_}->{generation_high} == 10) { |