Changeset 6505
- Timestamp:
- Aug 6, 2014, 9:38:36 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.3-stable/www/logout.jsp
r6504 r6505 40 40 <%@ taglib prefix="base" uri="/WEB-INF/base.tld" %> 41 41 <% 42 final SessionControl sc = Base.getExistingSessionControl(pageContext, true);42 final SessionControl sc = Base.getExistingSessionControl(pageContext, false); 43 43 final String ID = sc.getId(); 44 final String noconfirm = request.getParameter("noconfirm");45 if (noconfirm != null)44 final boolean noconfirm = Values.getBoolean(request.getParameter("noconfirm"), !sc.isLoggedIn()); 45 if (noconfirm) 46 46 { 47 47 // Redirect to main login page
Note: See TracChangeset
for help on using the changeset viewer.