diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2008-10-26 10:57:49 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2008-10-26 10:57:49 -0400 |
commit | a528cff1a1391f92c1f9be47bffbacf0c6874ac4 (patch) | |
tree | 65549e1f771bb7c1622beca0c99808a0d07ec256 /actions | |
parent | 90e4512df2c8497cea0ad704d10f464b1856d58b (diff) |
fix calls to show_rss_timeline
darcs-hash:20081026145749-5ed1f-f2e566947ee5724aeb9c6e91922477cbfc60e144.gz
Diffstat (limited to 'actions')
-rw-r--r-- | actions/twitapifavorites.php | 2 | ||||
-rw-r--r-- | actions/twitapistatuses.php | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/actions/twitapifavorites.php b/actions/twitapifavorites.php index 2fdd88544..7783707a4 100644 --- a/actions/twitapifavorites.php +++ b/actions/twitapifavorites.php @@ -71,7 +71,7 @@ class TwitapifavoritesAction extends TwitterapiAction { $this->show_xml_timeline($notice); break; case 'rss': - $this->show_rss_timeline($notice, $title, $id, $link, $subtitle); + $this->show_rss_timeline($notice, $title, $link, $subtitle); break; case 'atom': $this->show_atom_timeline($notice, $title, $id, $link, $subtitle); diff --git a/actions/twitapistatuses.php b/actions/twitapistatuses.php index a33e8cc3b..68d6bb622 100644 --- a/actions/twitapistatuses.php +++ b/actions/twitapistatuses.php @@ -128,7 +128,7 @@ class TwitapistatusesAction extends TwitterapiAction { $this->show_xml_timeline($notice); break; case 'rss': - $this->show_rss_timeline($notice, $title, $id, $link, $subtitle); + $this->show_rss_timeline($notice, $title, $link, $subtitle); break; case 'atom': $this->show_atom_timeline($notice, $title, $id, $link, $subtitle); @@ -206,7 +206,7 @@ class TwitapistatusesAction extends TwitterapiAction { $this->show_xml_timeline($notice); break; case 'rss': - $this->show_rss_timeline($notice, $title, $id, $link, $subtitle, $suplink); + $this->show_rss_timeline($notice, $title, $link, $subtitle, $suplink); break; case 'atom': $this->show_atom_timeline($notice, $title, $id, $link, $subtitle, $suplink); @@ -362,7 +362,7 @@ class TwitapistatusesAction extends TwitterapiAction { $this->show_xml_timeline($notices); break; case 'rss': - $this->show_rss_timeline($notices, $title, $id, $link, $subtitle); + $this->show_rss_timeline($notices, $title, $link, $subtitle); break; case 'atom': $this->show_atom_timeline($notices, $title, $id, $link, $subtitle); |