Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
3.0.0, 3.0.1
-
None
Description
The following fragment of code in the PageAdminPortlet.addPage(ActionRequest) method does not check if the portlet context path already contains a leading forward-slash:
PageAdminPortlet.java
String contextPath = applicationName; if (contextPath.length() > 0) { contextPath = "/" + contextPath; }
Because of this, the contextPath might end up with double forward-slashes.