svn commit: r1618537 - /ofbiz/trunk/framework/webtools/webapp/webtools/service/setServiceParameterSync.ftl

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r1618537 - /ofbiz/trunk/framework/webtools/webapp/webtools/service/setServiceParameterSync.ftl

ashish-18
Author: ashish
Date: Mon Aug 18 05:00:29 2014
New Revision: 1618537

URL: http://svn.apache.org/r1618537
Log:
Applied fix for jira issue OFBIZ-5719 - Error to use <#if serviceParameter.value!> in setServiceParameterSync.ftl.
Thanks Wei for reporting the issue and providing the details for the fix.

Modified:
    ofbiz/trunk/framework/webtools/webapp/webtools/service/setServiceParameterSync.ftl

Modified: ofbiz/trunk/framework/webtools/webapp/webtools/service/setServiceParameterSync.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/webtools/webapp/webtools/service/setServiceParameterSync.ftl?rev=1618537&r1=1618536&r2=1618537&view=diff
==============================================================================
--- ofbiz/trunk/framework/webtools/webapp/webtools/service/setServiceParameterSync.ftl (original)
+++ ofbiz/trunk/framework/webtools/webapp/webtools/service/setServiceParameterSync.ftl Mon Aug 18 05:00:29 2014
@@ -27,7 +27,7 @@ under the License.
       <tr>
         <td class="label">${serviceParameter.name} (${serviceParameter.type})</td>
         <td>
-          <input type="text" size="20" name="${serviceParameter.name}" value="<#if serviceParameter.value!>${serviceParameter.value?string}</#if>"<#if serviceParameter.optional == "N"> class="required"</#if>/>
+          <input type="text" size="20" name="${serviceParameter.name}" value="<#if serviceParameter.value??>${serviceParameter.value?string}</#if>"<#if serviceParameter.optional == "N"> class="required"</#if>/>
           <#if serviceParameter.optional == "N"><span class="tooltip">${uiLabelMap.CommonRequired}</span></#if>
           <#if serviceParameter.defaultValue?has_content>${uiLabelMap.WebtoolsServiceDefault} ${serviceParameter.defaultValue?string}</#if>
         </td>