Fixed PHP error with missing bracket

Signed-off-by: Alex Bilbie <alex@alexbilbie.com>
This commit is contained in:
Alex Bilbie 2012-10-12 13:09:56 +01:00
parent 0ce0459cfe
commit 92ace5c6e5

View File

@ -50,7 +50,7 @@ class IDP {
'redirect_uri' => $this->redirectUri,
'state' => $state,
'scope' => is_array($this->scope) ? implode($this->scopeSeperator, $this->scope) : $this->scope,
'response_type' => isset($options['response_type'] ? $options['response_type'] : 'code',
'response_type' => isset($options['response_type']) ? $options['response_type'] : 'code',
'approval_prompt' => 'force' // - google force-recheck
);