From: Adrian Lang Date: Sat, 7 Mar 2009 09:16:05 +0000 (+0100) Subject: Correct api method names for rss2 and atom feeds in all.php action. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=162da3cbc5f05d4e01c678019c1db92a940d4da5;p=quix0rs-gnu-social.git Correct api method names for rss2 and atom feeds in all.php action. --- diff --git a/actions/all.php b/actions/all.php index 08dcccbddb..8e67ec0f3b 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))); }