diff options
author | Duncan Parkes <duncan@mysociety.org> | 2010-12-25 00:27:58 +0000 |
---|---|---|
committer | Duncan Parkes <duncan@mysociety.org> | 2010-12-25 00:27:58 +0000 |
commit | 629bf2353209dc76005d5bec91e2e29c82d32336 (patch) | |
tree | 12f3adb215bcc973475e28f3c373afb72251c8f9 | |
parent | 928589637b40425db673aab7ac6567bc23ff6119 (diff) |
Wrong quotes
-rwxr-xr-x | web/rss.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/rss.cgi b/web/rss.cgi index a28a1c030..0ae8b5dc0 100755 --- a/web/rss.cgi +++ b/web/rss.cgi @@ -77,7 +77,7 @@ sub rss_local_problems { $state = 'confirmed' if $state eq 'open'; # state is getting lost in the redirects. Add it on to the end as a query - my $state_qs = '?state=$state' unless $state eq 'all'; + my $state_qs = "?state=$state" unless $state eq 'all'; my $cobrand = Page::get_cobrand($q); my $base = Cobrand::base_url($cobrand); |