summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorAdrian Lang <mail@adrianlang.de>2009-03-07 10:16:05 +0100
committerCiaranG <ciaran@ciarang.com>2009-03-07 12:39:36 +0000
commit162da3cbc5f05d4e01c678019c1db92a940d4da5 (patch)
treea4f13fc19e0b0bcf24a12632ef52691cf97fc439 /actions
parent597e1988b0dbe0b3eacbeadadad2655b457d2496 (diff)
Correct api method names for rss2 and atom feeds in all.php action.
Diffstat (limited to 'actions')
-rw-r--r--actions/all.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/all.php b/actions/all.php
index 08dcccbdd..8e67ec0f3 100644
--- a/actions/all.php
+++ b/actions/all.php
@@ -77,12 +77,12 @@ class AllAction extends Action
sprintf(_('Feed for friends of %s (RSS 1.0)'), $this->user->nickname)),
new Feed(Feed::RSS2,
common_local_url('api', array('apiaction' => 'statuses',
- 'method' => 'friends',
+ 'method' => 'friends_timeline',
'argument' => $this->user->nickname.'.rss')),
sprintf(_('Feed for friends of %s (RSS 2.0)'), $this->user->nickname)),
new Feed(Feed::ATOM,
common_local_url('api', array('apiaction' => 'statuses',
- 'method' => 'friends',
+ 'method' => 'friends_timeline',
'argument' => $this->user->nickname.'.atom')),
sprintf(_('Feed for friends of %s (Atom)'), $this->user->nickname)));
}