[OFBiz] SVN: r5622 -
trunk/applications/order/webapp/ordermgr/WEB-INF/actions/entry/catalog
jonesde at svn.ofbiz.org
jonesde at svn.ofbiz.org
Thu Sep 1 16:25:29 EDT 2005
Author: jonesde
Date: 2005-09-01 15:25:24 -0500 (Thu, 01 Sep 2005)
New Revision: 5622
Modified:
trunk/applications/order/webapp/ordermgr/WEB-INF/actions/entry/catalog/productdetail.bsh
Log:
Small cleanup in use of parameters Map
Modified: trunk/applications/order/webapp/ordermgr/WEB-INF/actions/entry/catalog/productdetail.bsh
===================================================================
--- trunk/applications/order/webapp/ordermgr/WEB-INF/actions/entry/catalog/productdetail.bsh 2005-09-01 20:24:08 UTC (rev 5621)
+++ trunk/applications/order/webapp/ordermgr/WEB-INF/actions/entry/catalog/productdetail.bsh 2005-09-01 20:25:24 UTC (rev 5622)
@@ -83,7 +83,6 @@
return buf.toString();
}
-requestParams = UtilHttp.getParameterMap(request);
cart = ShoppingCartEvents.getCartObject(request);
// get the shopping lists for the user (if logged in)
@@ -133,7 +132,7 @@
}
// get next/previous information for category
- categoryId = requestParams.get("category_id");
+ categoryId = parameters.get("category_id");
if (categoryId == null) categoryId = product.getString("primaryProductCategoryId");
if (categoryId != null) context.put("categoryId", categoryId);
More information about the Svn
mailing list