Author: jleroux
Date: Sun Nov 21 21:12:43 2010
New Revision: 1037560
URL:
http://svn.apache.org/viewvc?rev=1037560&view=revLog:
A patch from Eric de Maulde "Service Engine can't display sendMail service" (
https://issues.apache.org/jira/browse/OFBIZ-4019) - OFBIZ-4019
There's an error into file AvailableServices.groovy to open sendMail service
Modified:
ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/service/AvailableServices.groovy
Modified: ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/service/AvailableServices.groovy
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/service/AvailableServices.groovy?rev=1037560&r1=1037559&r2=1037560&view=diff==============================================================================
--- ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/service/AvailableServices.groovy (original)
+++ ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/service/AvailableServices.groovy Sun Nov 21 21:12:43 2010
@@ -460,7 +460,7 @@ if (selectedService) {
curOvrPrm.internal = curParam.internal ? uiLabelMap.CommonTrue : uiLabelMap.CommonFalse;
curOvrPrm.mode = curParam.mode;
curOvrPrm.name = curParam.name;
- curOvrParam.description = curParam.description;
+ curOvrPrm.description = curParam.description;
curOvrPrm.optional = curParam.optional ? uiLabelMap.CommonTrue : uiLabelMap.CommonFalse;
curOvrPrm.type = curParam.type;
ovrPrmList.add(curOvrPrm);