Support the 'lite' parameter to statuses/friends and statuses/followers twitter api methods.

http://laconi.ca/trac/ticket/1786
This commit is contained in:
Craig Andrews
2009-08-06 15:14:27 -04:00
parent 153248b482
commit 26b608d914
2 changed files with 11 additions and 9 deletions

View File

@@ -844,9 +844,9 @@ class TwitterapiAction extends Action
$this->endXML();
}
function show_profile($profile, $content_type='xml', $notice=null)
function show_profile($profile, $content_type='xml', $notice=null, $includeStatuses=true)
{
$profile_array = $this->twitter_user_array($profile, true);
$profile_array = $this->twitter_user_array($profile, $includeStatuses);
switch ($content_type) {
case 'xml':
$this->show_twitter_xml_user($profile_array);