We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9017604 commit a11e987Copy full SHA for a11e987
Dailymotion.php
@@ -172,7 +172,7 @@ public function getAuthorizationUrl($display = 'page')
172
'response_type' => 'code',
173
'client_id' => $this->grantInfo['key'],
174
'redirect_uri' => $this->grantInfo['redirect_uri'],
175
- 'scope' => is_array($this->grantInfo['scope']) ? implode(' ', $scope) : $scope,
+ 'scope' => is_array($scope = $this->grantInfo['scope']) ? implode(' ', $scope) : $scope,
176
'display' => $display,
177
), null, '&');
178
}
0 commit comments