Details
-
Bug
-
Status: Closed
-
Resolution: Fixed
-
6.1.30 EE GA3, 6.2.0 CE B2
-
None
-
5.1.4
-
6.1.x
-
Committed
-
3
Description
If you want CAS To Work on any page that a user goes to (without clicking login) you can change the filter in the WEB.XML but if you do and go to the server without a url there is a nullpoint ererror in the log and you cannot get to Liferay... I found that by changing the code in com.liferay.portal.servlet.filters.sso.cas.CASFilter
From
if (pathInfo.indexOf("/portal/logout") != -1)
To
if (pathInfo != null && pathInfo.indexOf("/portal/logout") != -1) {
Fixes it.