[OFBiz] SVN: r6491 - trunk/applications/order/webapp/ordermgr/WEB-INF/actions/order
sichen@svn.ofbiz.org
sichen at svn.ofbiz.org
Thu Jan 12 12:33:24 CST 2006
Author: sichen
Date: 2006-01-12 12:33:21 -0600 (Thu, 12 Jan 2006)
New Revision: 6491
Modified:
trunk/applications/order/webapp/ordermgr/WEB-INF/actions/order/sendconfirmationemail.bsh
Log:
fixes bug where after sending a confirmation email, you can't view any other orders. OFBIZ-599
Modified: trunk/applications/order/webapp/ordermgr/WEB-INF/actions/order/sendconfirmationemail.bsh
===================================================================
--- trunk/applications/order/webapp/ordermgr/WEB-INF/actions/order/sendconfirmationemail.bsh 2006-01-11 17:56:42 UTC (rev 6490)
+++ trunk/applications/order/webapp/ordermgr/WEB-INF/actions/order/sendconfirmationemail.bsh 2006-01-12 18:33:21 UTC (rev 6491)
@@ -32,9 +32,7 @@
orderId = request.getParameter("orderId");
if (orderId == null) {
- orderId = session.getAttribute("orderId");
-} else {
- session.setAttribute("orderId", orderId);
+ orderId = parameters.get("order_id");
}
context.put("orderId", orderId);
More information about the Svn
mailing list