diff options
author | matthew <matthew> | 2007-06-15 23:13:58 +0000 |
---|---|---|
committer | matthew <matthew> | 2007-06-15 23:13:58 +0000 |
commit | bd56ef052ce0a5c7a73b05c384307a5a0ccdc123 (patch) | |
tree | a854ffa38b6b466eed246c13baa7f096dfbbb8d0 | |
parent | c8b9fa5093ad0d841c0c252221a8244f62671639 (diff) |
Stop warning in log.
-rwxr-xr-x | web/report.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/report.cgi b/web/report.cgi index 753364745..1335a94f7 100755 --- a/web/report.cgi +++ b/web/report.cgi @@ -6,7 +6,7 @@ # Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved. # Email: matthew@mysociety.org. WWW: http://www.mysociety.org # -# $Id: report.cgi,v 1.38 2007-06-15 14:57:52 matthew Exp $ +# $Id: report.cgi,v 1.39 2007-06-15 23:13:58 matthew Exp $ use strict; require 5.8.0; @@ -36,7 +36,7 @@ BEGIN { sub main { my $q = shift; my $all = $q->param('all') || 0; - my $one_council = $q->param('council'); + my $one_council = $q->param('council') || ''; $one_council =~ s/\D//g; $all = 0 unless $one_council; my @params; |