SEC-1490: Correct loggedout URL.

This commit is contained in:
Luke Taylor 2010-07-20 23:43:43 +01:00
parent 5d35919ca3
commit e5a302b5c4
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ public class GaeAppController {
public void logout(HttpServletRequest request, HttpServletResponse response) throws IOException {
request.getSession().invalidate();
String logoutUrl = UserServiceFactory.getUserService().createLogoutURL("/");
String logoutUrl = UserServiceFactory.getUserService().createLogoutURL("/loggedout.htm");
response.sendRedirect(logoutUrl);
}