Skip to content

Commit a11e987

Browse files
author
Olivier Poitrey
committed
Fix typo
1 parent 9017604 commit a11e987

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dailymotion.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ public function getAuthorizationUrl($display = 'page')
172172
'response_type' => 'code',
173173
'client_id' => $this->grantInfo['key'],
174174
'redirect_uri' => $this->grantInfo['redirect_uri'],
175-
'scope' => is_array($this->grantInfo['scope']) ? implode(' ', $scope) : $scope,
175+
'scope' => is_array($scope = $this->grantInfo['scope']) ? implode(' ', $scope) : $scope,
176176
'display' => $display,
177177
), null, '&');
178178
}

0 commit comments

Comments
 (0)