diff options
author | matthew <matthew> | 2008-09-01 17:17:58 +0000 |
---|---|---|
committer | matthew <matthew> | 2008-09-01 17:17:58 +0000 |
commit | 950ab3f2db42c288a0f93d650c714719d724d55d (patch) | |
tree | e7373f7e8f8b54a9a90523639c6b20d2073a1ad8 /web/rss.cgi | |
parent | c4cb8814125b498cb723181663a498e46206888f (diff) |
Add new_fixed_problems RSS feed.
Diffstat (limited to 'web/rss.cgi')
-rwxr-xr-x | web/rss.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/rss.cgi b/web/rss.cgi index 1d357efbb..39c2c89cb 100755 --- a/web/rss.cgi +++ b/web/rss.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: rss.cgi,v 1.21 2008-05-23 09:53:10 matthew Exp $ +# $Id: rss.cgi,v 1.22 2008-09-01 17:17:58 matthew Exp $ use strict; use Standard; @@ -26,7 +26,7 @@ sub main { my $id = $q->param('id'); my $qs = '?id='.$id; $out = mySociety::Alert::generate_rss($type, $qs, [$id]); - } elsif ($type eq 'new_problems') { + } elsif ($type eq 'new_problems' || $type eq 'new_fixed_problems') { $out = mySociety::Alert::generate_rss($type, ''); } elsif ($type eq 'council_problems') { my $id = $q->param('id'); |