diff options
author | zach <zach@controlyourself.ca> | 2008-09-30 17:25:26 -0400 |
---|---|---|
committer | zach <zach@controlyourself.ca> | 2008-09-30 17:25:26 -0400 |
commit | 1c4f7722da90e8e8ce0489720ede223804885377 (patch) | |
tree | 1e44670e7b384f82fe808158e4865c9fc5228d58 /actions/twitapiusers.php | |
parent | 37b3bd54893b0221fba32461c2720fc252e11743 (diff) |
Twitter-compatible API - factored out redundant JSON printing functions
darcs-hash:20080930212526-462f3-abe9f1f2fc395c751b2861e686d638ea0a8ca001.gz
Diffstat (limited to 'actions/twitapiusers.php')
-rw-r--r-- | actions/twitapiusers.php | 2 |
1 files changed, 1 insertions, 1 deletions
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); |