Fix ticket 662
The user_timeline action for the Twitter API was not reading the page argument. Added in one line to assign the page argument. Tested on local install and it worked. darcs-hash:20080922213314-e558a-1e429af6660de21990236b2bb444f2b6f36e08df.gz
This commit is contained in:
parent
392137b403
commit
3017ad3f01
|
@ -323,6 +323,7 @@ class TwitapistatusesAction extends TwitterapiAction {
|
|||
$count = $this->arg('count');
|
||||
$since = $this->arg('since');
|
||||
$since_id = $this->arg('since_id');
|
||||
$page = $this->arg('page');
|
||||
|
||||
if (!$page) {
|
||||
$page = 1;
|
||||
|
|
Loading…
Reference in New Issue
Block a user