include entities in the results of home_timeline

This commit is contained in:
Evan Prodromou 2010-09-05 01:25:48 -04:00
parent 32f3332007
commit 865075e648
1 changed files with 2 additions and 1 deletions

View File

@ -205,7 +205,8 @@ class TwitterOAuthClient extends OAuthClient
$params = array('since_id' => $since_id,
'max_id' => $max_id,
'count' => $cnt,
'page' => $page);
'page' => $page,
'include_entities' => 1);
$qry = http_build_query($params);
if (!empty($qry)) {