diff options
author | matthew <matthew> | 2008-09-25 12:55:07 +0000 |
---|---|---|
committer | matthew <matthew> | 2008-09-25 12:55:07 +0000 |
commit | 2a8c80e1d825517c519e90b607b6745a863d904f (patch) | |
tree | e3b5c2dba468a04bf25f3e564d3e7ce7c3a11849 | |
parent | 6b79d1807107d6ca60f98596dc4fc85774080a24 (diff) |
Typo.
-rwxr-xr-x | web/rss.cgi | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/web/rss.cgi b/web/rss.cgi index 60ffde186..ea9a15237 100755 --- a/web/rss.cgi +++ b/web/rss.cgi @@ -6,9 +6,10 @@ # Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved. # Email: matthew@mysociety.org. WWW: http://www.mysociety.org # -# $Id: rss.cgi,v 1.24 2008-09-25 12:53:42 matthew Exp $ +# $Id: rss.cgi,v 1.25 2008-09-25 12:55:07 matthew Exp $ use strict; +use Error qw(:try); use Standard; use URI::Escape; use mySociety::Alert; @@ -70,7 +71,7 @@ sub rss_local_problems { } elsif ($pc) { my $error; try { - ($x, $y, $e, $n, $error) = Page::geocode($input{pc}); + ($x, $y, $e, $n, $error) = Page::geocode($pc); } catch Error::Simple with { $error = shift; }; |