diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-02-11 09:54:23 -0500 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-02-11 09:54:23 -0500 |
commit | 26b0bc3aab831c26058274554580e3beb68b1113 (patch) | |
tree | 360f787d9f68daa4f744a61f05115bb5ab738c9e /lib | |
parent | 880d0b477b254d62f68b2a894ff558448693e37a (diff) | |
parent | 7763f804cafa6f41316e30512c4ceab9b78f2c08 (diff) |
Merge branch '0.7.x' of git@gitorious.org:laconica/dev into 0.7.x
Diffstat (limited to 'lib')
-rw-r--r-- | lib/feedlist.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/feedlist.php b/lib/feedlist.php index 47d909e96..8bfcb9c5a 100644 --- a/lib/feedlist.php +++ b/lib/feedlist.php @@ -112,6 +112,13 @@ class FeedList extends Widget $feed['textContent'] = "Atom"; break; + case 'noticesearchrss': + $feed_classname = $feed['type']; + $feed_mimetype = "application/".$feed['type']."+xml"; + $feed_title = $feed['version']." feed for this notice search"; + $feed['textContent'] = "RSS"; + break; + case 'tagrss': $feed_classname = $feed['type']; $feed_mimetype = "application/".$feed['type']."+xml"; |