From: mac65 Date: Mon, 22 Sep 2008 21:33:14 +0000 (-0400) Subject: Fix ticket 662 X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=3017ad3f010bf0f9b6f1b9da104ccbdd2c1a25d2;p=quix0rs-gnu-social.git 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 --- diff --git a/actions/twitapistatuses.php b/actions/twitapistatuses.php index 3041240dde..87e805e877 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;