]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Correct api method names for rss2 and atom feeds in all.php action.
authorAdrian Lang <mail@adrianlang.de>
Sat, 7 Mar 2009 09:16:05 +0000 (10:16 +0100)
committerCiaranG <ciaran@ciarang.com>
Sat, 7 Mar 2009 12:39:36 +0000 (12:39 +0000)
actions/all.php

index 08dcccbddb711c12ff7578e165d99c72b1068545..8e67ec0f3b49eff9db6b6b7020762b952f9843da 100644 (file)
@@ -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)));
     }