diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-07-01 22:47:21 +0000 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2009-07-01 22:47:21 +0000 |
commit | 92e30b438e1601476e20f2ea40876dd3fc32f6ca (patch) | |
tree | b85dd0e44343f4e45bc87ed8b2cd59b273c9a57a /plugins/FBConnect/FBConnectAuth.php | |
parent | b8d32a511827a3db893969767ac11594b16e437f (diff) |
Killed the FB Connect profile-pic bounce in all browsers
Diffstat (limited to 'plugins/FBConnect/FBConnectAuth.php')
-rw-r--r-- | plugins/FBConnect/FBConnectAuth.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/FBConnect/FBConnectAuth.php b/plugins/FBConnect/FBConnectAuth.php index 4699ce636..3cf9fefc1 100644 --- a/plugins/FBConnect/FBConnectAuth.php +++ b/plugins/FBConnect/FBConnectAuth.php @@ -66,7 +66,7 @@ class FBConnectauthAction extends Action // User is already logged in. Does she already have a linked Facebook acct? $flink = Foreign_link::getByForeignID($this->fbuid, FACEBOOK_CONNECT_SERVICE); - if ($flink) { + if (!empty($flink)) { // User already has a linked Facebook account and shouldn't be here common_debug('There is already a local user (' . $flink->user_id . @@ -337,7 +337,7 @@ class FBConnectauthAction extends Action if ($flink) { $user = $flink->getUser(); - if ($user) { + if (!empty($user)) { common_debug("Logged in Facebook user $flink->foreign_id as user $user->id ($user->nickname)"); |