com.liferay.portal.events.ServicePreAction.java
fixState method:
/* WebSphere when builds an url with query string and forwards the request to that URL,
* the request.getRequestURI() method returns the URI with the query string.
*/
// if (!requestURI.endsWith("/portal/layout")) {
// return;
// }
// The above snippet should be changed to:
if (!(requestURI.indexOf("/portal/layout") > -1)) {
return;
}
No comments:
Post a Comment