diff options
author | mac65 <mac65@mac65.com> | 2008-09-22 17:33:14 -0400 |
---|---|---|
committer | mac65 <mac65@mac65.com> | 2008-09-22 17:33:14 -0400 |
commit | 3017ad3f010bf0f9b6f1b9da104ccbdd2c1a25d2 (patch) | |
tree | e35ea4fd990079093d710db03fc1399aa8f97adb /actions/twitapistatuses.php | |
parent | 392137b4033793620fcd36d641625b5591b046bf (diff) |
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
Diffstat (limited to 'actions/twitapistatuses.php')
-rw-r--r-- | actions/twitapistatuses.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/actions/twitapistatuses.php b/actions/twitapistatuses.php index 3041240dd..87e805e87 100644 --- a/actions/twitapistatuses.php +++ b/actions/twitapistatuses.php @@ -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; |