You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by jb...@apache.org on 2007/05/06 23:13:44 UTC

svn commit: r535657 - /incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/WicketFilter.java

Author: jbq
Date: Sun May  6 14:13:43 2007
New Revision: 535657

URL: http://svn.apache.org/viewvc?view=rev&rev=535657
Log:
WICKET-40 Parameters of nice URL's pages with 'sensitive' characters

Need to strip out jsessionid

Modified:
    incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/WicketFilter.java

Modified: incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/WicketFilter.java
URL: http://svn.apache.org/viewvc/incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/WicketFilter.java?view=diff&rev=535657&r1=535656&r2=535657
==============================================================================
--- incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/WicketFilter.java (original)
+++ incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/WicketFilter.java Sun May  6 14:13:43 2007
@@ -288,7 +288,7 @@
 	 */
 	public String getRelativePath(HttpServletRequest request)
 	{
-		String path = request.getRequestURI();
+		String path = Strings.stripJSessionId(request.getRequestURI());
 		String contextPath = request.getContextPath();
 		path = path.substring(contextPath.length());
 		if (servletMode)