This sounds like a behavior derived from a cookie that's persisting. Maybe they're not getting auto-logged in, but rather they are still logged in from last time.
I don't know what your code looks like, but try running FB.getLoginStatus() when the page is visited and the authResponse object is not null then there's an active cookie showing the user to be both authorized for the app and currently logged in. You could
FB.getLoginStatus(function (response) {
if (response.authResponse) {
// take whatever action you want
}
});
Facebook lets you ask 'offline' permission from users which would be a cookie that never expires; it sounds like you want one that expires as soon as the user closes their browser and I don't know if FB currently gives us a way to control that, but I don't think so.