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:
mac65 2008-09-22 17:33:14 -04:00
parent 392137b403
commit 3017ad3f01
1 changed files with 1 additions and 0 deletions

View File

@ -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;