You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by im...@apache.org on 2007/01/30 15:42:01 UTC

svn commit: r501404 - /myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/redirectTracker/RedirectTrackerManager.java

Author: imario
Date: Tue Jan 30 06:41:56 2007
New Revision: 501404

URL: http://svn.apache.org/viewvc?view=rev&rev=501404
Log:
fixed using the correct key when building the redirect url. Thanks to Aleksandr Mazur for pointing it out.

Modified:
    myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/redirectTracker/RedirectTrackerManager.java

Modified: myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/redirectTracker/RedirectTrackerManager.java
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/redirectTracker/RedirectTrackerManager.java?view=diff&rev=501404&r1=501403&r2=501404
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/redirectTracker/RedirectTrackerManager.java (original)
+++ myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/redirectTracker/RedirectTrackerManager.java Tue Jan 30 06:41:56 2007
@@ -256,11 +256,11 @@
 
 		if (redirectPath.indexOf('?') == -1)
 		{
-			return redirectPath + "?" + REDIRECT_ARG + "=" + rtid;
+			return redirectPath + "?" + REDIRECT_ARG + "=" + mapKey;
 		}
 		else
 		{
-			return redirectPath + "&" + REDIRECT_ARG + "=" + rtid;
+			return redirectPath + "&" + REDIRECT_ARG + "=" + mapKey;
 		}
 	}