diff options
Diffstat (limited to 'web/rss.cgi')
-rwxr-xr-x | web/rss.cgi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/web/rss.cgi b/web/rss.cgi index a716d93e9..8885af249 100755 --- a/web/rss.cgi +++ b/web/rss.cgi @@ -76,7 +76,8 @@ sub rss_local_problems { $state = 'all' unless $state =~ /^(all|open|fixed)$/; # 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_qs = "?state=$state" unless $state eq 'all'; $state = 'confirmed' if $state eq 'open'; |