Author: jleroux
Date: Fri Nov 1 17:47:19 2013
New Revision: 1538002
URL:
http://svn.apache.org/r1538002Log:
"Applied fix from trunk for revision: 1537996"
------------------------------------------------------------------------
r1537996 | jleroux | 2013-11-01 18:40:51 +0100 (ven. 01 nov. 2013) | 2 lignes
Fixes a bug reported by Eric Kingston at "Sales/Purchase Quote product id auto complete malfunction"
https://issues.apache.org/jira/browse/OFBIZ-5379------------------------------------------------------------------------
Modified:
ofbiz/branches/release13.07/ (props changed)
ofbiz/branches/release13.07/framework/common/webcommon/includes/ajaxAutocompleteOptions.ftl
Propchange: ofbiz/branches/release13.07/
------------------------------------------------------------------------------
Merged /ofbiz/trunk:r1537996
Modified: ofbiz/branches/release13.07/framework/common/webcommon/includes/ajaxAutocompleteOptions.ftl
URL:
http://svn.apache.org/viewvc/ofbiz/branches/release13.07/framework/common/webcommon/includes/ajaxAutocompleteOptions.ftl?rev=1538002&r1=1538001&r2=1538002&view=diff==============================================================================
--- ofbiz/branches/release13.07/framework/common/webcommon/includes/ajaxAutocompleteOptions.ftl (original)
+++ ofbiz/branches/release13.07/framework/common/webcommon/includes/ajaxAutocompleteOptions.ftl Fri Nov 1 17:47:19 2013
@@ -48,7 +48,7 @@ var autocomp = [
<#if (key == context.returnField)>
<#assign returnField = field/>
<#else>
- <#assign displayString = displayString + StringUtil.wrapString(field) + " ">
+ <#assign displayString = displayString + StringUtil.wrapString(field?string) + " ">
</#if>
</#if>
</#list>