Attempt to reduce the number of calls to FB to speed things up
This commit is contained in:
parent
b842b34a57
commit
dcfb91ea8b
|
@ -122,9 +122,7 @@ class FBConnectPlugin extends Plugin
|
||||||
FB_RequireFeatures(
|
FB_RequireFeatures(
|
||||||
["XFBML"],
|
["XFBML"],
|
||||||
function() {
|
function() {
|
||||||
FB.init("%s", "../xd_receiver.html",
|
FB.init("%s", "../xd_receiver.html");
|
||||||
{"doNotUseCachedConnectState":true });
|
|
||||||
|
|
||||||
}
|
}
|
||||||
); }
|
); }
|
||||||
|
|
||||||
|
@ -222,7 +220,7 @@ class FBConnectPlugin extends Plugin
|
||||||
try {
|
try {
|
||||||
|
|
||||||
$facebook = getFacebook();
|
$facebook = getFacebook();
|
||||||
$fbuid = $facebook->api_client->users_getLoggedInUser();
|
$fbuid = $facebook->get_loggedin_user();
|
||||||
|
|
||||||
} catch (Exception $e) {
|
} catch (Exception $e) {
|
||||||
common_log(LOG_WARNING,
|
common_log(LOG_WARNING,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user