Author: jonesde
Date: Fri Oct 13 13:34:06 2006
New Revision: 463814
URL:
http://svn.apache.org/viewvc?view=rev&rev=463814Log:
Use parameters.get instead of request.getAttribute, should fix bug reported by Si in Jira #OFBIZ-375
Modified:
incubator/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/WEB-INF/actions/order/orderstatus.bsh
Modified: incubator/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/WEB-INF/actions/order/orderstatus.bsh
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/WEB-INF/actions/order/orderstatus.bsh?view=diff&rev=463814&r1=463813&r2=463814==============================================================================
--- incubator/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/WEB-INF/actions/order/orderstatus.bsh (original)
+++ incubator/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/WEB-INF/actions/order/orderstatus.bsh Fri Oct 13 13:34:06 2006
@@ -29,7 +29,7 @@
// we have a special case here where for an anonymous order the user will already be logged out, but the userLogin will be in the request so we can still do a security check here
if (userLogin == null) {
- userLogin = request.getAttribute("temporaryAnonymousUserLogin");
+ userLogin = parameters.get("temporaryAnonymousUserLogin");
context.put("userLogin", userLogin);
}