summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
Diffstat (limited to 'actions')
-rw-r--r--actions/twitapidirect_messages.php2
-rw-r--r--actions/twitapiusers.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/actions/twitapidirect_messages.php b/actions/twitapidirect_messages.php
index 8f0ecb449..fcdf822e0 100644
--- a/actions/twitapidirect_messages.php
+++ b/actions/twitapidirect_messages.php
@@ -215,7 +215,7 @@ class Twitapidirect_messagesAction extends TwitterapiAction {
}
}
- $this->show_twitter_json_dmsgs($dmsgs);
+ $this->show_json_objects($dmsgs);
$this->end_document('json');
}
diff --git a/actions/twitapiusers.php b/actions/twitapiusers.php
index 6dad53818..cb682695a 100644
--- a/actions/twitapiusers.php
+++ b/actions/twitapiusers.php
@@ -116,7 +116,7 @@ class TwitapiusersAction extends TwitterapiAction {
$this->end_document('xml');
} elseif ($apidata['content-type'] == 'json') {
$this->init_document('json');
- $this->show_twitter_json_users($twitter_user);
+ $this->show_json_objects($twitter_user);
$this->end_document('json');
} else {
common_user_error(_('API method not found!'), $code = 404);