Merge pull request #21 from tfountain/auth-url-typo

Fixed typo in authorization method call
1.0
Phil Sturgeon 2013-09-13 08:36:08 -07:00
commit 7f269cac73
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ abstract class IdentityProvider {
public function authorize($options = array())
{
header('Location: ' . $this->getAuthorizeUrl($options));
header('Location: ' . $this->getAuthorizationUrl($options));
exit;
}