diff options
author | zach <zach@copley.name> | 2008-07-15 02:58:50 -0400 |
---|---|---|
committer | zach <zach@copley.name> | 2008-07-15 02:58:50 -0400 |
commit | 846a1a4106aa026b2321a80474e4a065eb060de5 (patch) | |
tree | c9432484f36b3ee6f9f8a9a33ad16b560cde62ca /actions | |
parent | 3df358a9e98328de4d865b91a5900f834a1f195a (diff) |
Twitter-compatible API: public_timeline.xml more complete
darcs-hash:20080715065850-ca946-6d0e490957830d2f837fd304f70599a636597f9c.gz
Diffstat (limited to 'actions')
-rw-r--r-- | actions/twitapistatuses.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/twitapistatuses.php b/actions/twitapistatuses.php index 7ac9167d3..d18543e04 100644 --- a/actions/twitapistatuses.php +++ b/actions/twitapistatuses.php @@ -56,7 +56,7 @@ class TwitapistatusesAction extends TwitterapiAction { common_element_start('statuses', array('type' => 'array')); for ($i = 0; $i < 20; $i++) { if ($notice->fetch()) { - $this->show_xml_status($notice); + $this->render_xml_status($notice); } else { // shouldn't happen! break; |