[various] Move optional token parameter at the end of OAuthRequest::from_consumer_and_token() function definition #975
1 changed files with 1 additions and 1 deletions
|
@ -234,7 +234,7 @@ class TumblrOAuth
|
|||
$url = "{$this->host}{$url}";
|
||||
}
|
||||
|
||||
$request = OAuthRequest::from_consumer_and_token($this->consumer, $this->token, $method, $url, $parameters);
|
||||
$request = OAuthRequest::from_consumer_and_token($this->consumer, $method, $url, $parameters, $this->token);
|
||||
$request->sign_request($this->sha1_method, $this->consumer, $this->token);
|
||||
switch ($method) {
|
||||
case 'GET':
|
||||
|
|
Loading…
Reference in a new issue