![Picture of Scott Howell Picture of Scott Howell](/graphics/unknown.gif)
Scott Howell - 2015-03-10 00:48:01
I have discovered what appears to be a bug, that has solved an issue I was having with login_with_google.php
oauth_client.php:
<pre>
Function Process()
{
if(!$this->CheckAccessToken($redirect_url))
return false;
if(IsSet($redirect_url))
{
$this->Redirect($url);
$this->exit = true;
}
return true;
}
</pre>
Redirect function should use "$redirect_url":
<pre>
Function Process()
{
if(!$this->CheckAccessToken($redirect_url))
return false;
if(IsSet($redirect_url))
{
$this->Redirect($redirect_url);
$this->exit = true;
}
return true;
}
</pre>