- bugfix: sometimes incorrect loadLists() after logout

This commit is contained in:
Max Pozdeev 2009-11-27 22:49:22 +03:00
parent 79bb4f7ed7
commit 5abfd99c79

View file

@ -504,9 +504,9 @@ function logout()
setAjaxErrorTrigger();
$.post('ajax.php?rnd='+Math.random(), { logout:1 }, function(json){
resetAjaxErrorTrigger();
flag.isLogged = false;
loadLists(0,1);
}, 'json');
flag.isLogged = false;
loadLists(0,1);
return false;
}