When the user clicks Logout, I trigger FB.logout() and redirect the user to the homepage.
However the homepage still thinks the user is logged in to facebook, so it redirects again to somewhere else. After the second redirect it realizes the user is logged out, but it's too late.
<a href="index.php" onclick="FB.logout();">Logout</a>
index.php:
FB.Event.subscribe('auth.login', function(response) {
window.location.href='login_facebook.php?action=login';
});