Author: arunpatidar
Date: Sat Oct  3 09:30:52 2015
New Revision: 1706531

URL: http://svn.apache.org/viewvc?rev=1706531&view=rev
Log:
[OFBIZ-6650] Fixed a typo in product.groovy which causing error on redering 
product page. Removed additional ')' from the statement

Modified:
    
ofbiz/trunk/applications/order/webapp/ordermgr/WEB-INF/actions/entry/catalog/Product.groovy

Modified: 
ofbiz/trunk/applications/order/webapp/ordermgr/WEB-INF/actions/entry/catalog/Product.groovy
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/webapp/ordermgr/WEB-INF/actions/entry/catalog/Product.groovy?rev=1706531&r1=1706530&r2=1706531&view=diff
==============================================================================
--- 
ofbiz/trunk/applications/order/webapp/ordermgr/WEB-INF/actions/entry/catalog/Product.groovy
 (original)
+++ 
ofbiz/trunk/applications/order/webapp/ordermgr/WEB-INF/actions/entry/catalog/Product.groovy
 Sat Oct  3 09:30:52 2015
@@ -114,7 +114,7 @@ if (productId) {
                 category = member.getRelatedOne("ProductCategory", true);
                 if (category.description) {
                     categoryContentWrapper = new 
CategoryContentWrapper(category, request);
-                    categoryDescription = 
categoryContentWrapper.get("DESCRIPTION", "html"));
+                    categoryDescription = 
categoryContentWrapper.get("DESCRIPTION", "html");
                     if (categoryDescription) {
                             keywords.add(categoryDescription);
                     }


Reply via email to