Author: jleroux
Date: Sun Nov 21 21:27:07 2010
New Revision: 1037565
URL:
http://svn.apache.org/viewvc?rev=1037565&view=revLog:
"Applied fix from trunk for revision: 1037560"
------------------------------------------------------------------------
r1037560 | jleroux | 2010-11-21 22:12:43 +0100 (dim., 21 nov. 2010) | 4 lines
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/branches/release10.04/framework/webtools/webapp/webtools/WEB-INF/actions/service/AvailableServices.groovy
Modified: ofbiz/branches/release10.04/framework/webtools/webapp/webtools/WEB-INF/actions/service/AvailableServices.groovy
URL:
http://svn.apache.org/viewvc/ofbiz/branches/release10.04/framework/webtools/webapp/webtools/WEB-INF/actions/service/AvailableServices.groovy?rev=1037565&r1=1037564&r2=1037565&view=diff==============================================================================
--- ofbiz/branches/release10.04/framework/webtools/webapp/webtools/WEB-INF/actions/service/AvailableServices.groovy (original)
+++ ofbiz/branches/release10.04/framework/webtools/webapp/webtools/WEB-INF/actions/service/AvailableServices.groovy Sun Nov 21 21:27:07 2010
@@ -458,6 +458,7 @@ if (selectedService) {
curOvrPrm.internal = curParam.internal ? uiLabelMap.CommonTrue : uiLabelMap.CommonFalse;
curOvrPrm.mode = curParam.mode;
curOvrPrm.name = curParam.name;
+ curOvrPrm.description = curParam.description;
curOvrPrm.optional = curParam.optional ? uiLabelMap.CommonTrue : uiLabelMap.CommonFalse;
curOvrPrm.type = curParam.type;
ovrPrmList.add(curOvrPrm);