diff -r dcf5381ce8ba -r 2c20563245b2 includes/clientside/static/login.js --- a/includes/clientside/static/login.js Sun Jan 25 21:20:14 2009 -0500 +++ b/includes/clientside/static/login.js Sun Jan 25 21:21:07 2009 -0500 @@ -366,7 +366,7 @@ { json = toJSONString(json); json = ajaxEscape(json); - ajaxPost(makeUrlNS('Special', 'Login/action.json'), 'r=' + json, function() + ajaxPost(makeUrlNS('Special', 'Login/action.json'), 'r=' + json, function(ajax) { if ( ajax.readyState == 4 && ajax.status == 200 ) { @@ -1298,6 +1298,7 @@ { auth_level = level; } + window.location.hash = '#auth:' + key; } else { @@ -1314,5 +1315,6 @@ } } } + window.location.hash = '#auth:false'; } }