summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--actions/twitapifavorites.php2
-rw-r--r--actions/twitapistatuses.php6
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);