Move check for valid access token to the right place

This commit is contained in:
Zach Copley 2011-09-27 16:59:10 +00:00
parent ec53e68cf2
commit cd30c94096
1 changed files with 5 additions and 4 deletions

View File

@ -44,10 +44,11 @@ class FacebookfinishloginAction extends Action
if (isset($_COOKIE['fb_access_token'])) {
$this->accessToken = $_COOKIE['fb_access_token'];
if (empty($this->accessToken)) {
$this->clientError(_m("Unable to authenticate you with Facebook."));
return false;
}
}
if (empty($this->accessToken)) {
$this->clientError(_m("Unable to authenticate you with Facebook."));
return false;
}
$graphUrl = 'https://graph.facebook.com/me?access_token=' . urlencode($this->accessToken);