CakePHP-Facebook-Plugin
CakePHP-Facebook-Plugin copied to clipboard
FB Helper init function
In the FB.init() there is the status flag, you could put it in the configuration, because this causes some errors when you are logged in as a normal user (nof from facebook connect) and do not want to connect your accont with the facebook account.
What status flag are you referring to?
in the facebook helper in init function You have: window.fbAsyncInit = function() { FB.init({ appId : '{$appId}', session : {$session}, status : true, cookie : true, xfbml : true }); FB.Event.subscribe('auth.login', function() { window.location.reload(); }); }; You could change it for : status : {$status}, and put it also in the config file.