You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by as...@apache.org on 2011/03/21 13:22:48 UTC

svn commit: r1083757 - /ofbiz/branches/release10.04/framework/common/webcommon/WEB-INF/actions/includes/FindAutocompleteOptions.groovy

Author: ashish
Date: Mon Mar 21 12:22:47 2011
New Revision: 1083757

URL: http://svn.apache.org/viewvc?rev=1083757&view=rev
Log:
Bug fix: Initialize fieldValue variable to avoid missingPropertyException for FindAutocompleteOptions.grovy file. This has been fixed in trunk. Thanks Deepak.

Modified:
    ofbiz/branches/release10.04/framework/common/webcommon/WEB-INF/actions/includes/FindAutocompleteOptions.groovy

Modified: ofbiz/branches/release10.04/framework/common/webcommon/WEB-INF/actions/includes/FindAutocompleteOptions.groovy
URL: http://svn.apache.org/viewvc/ofbiz/branches/release10.04/framework/common/webcommon/WEB-INF/actions/includes/FindAutocompleteOptions.groovy?rev=1083757&r1=1083756&r2=1083757&view=diff
==============================================================================
--- ofbiz/branches/release10.04/framework/common/webcommon/WEB-INF/actions/includes/FindAutocompleteOptions.groovy (original)
+++ ofbiz/branches/release10.04/framework/common/webcommon/WEB-INF/actions/includes/FindAutocompleteOptions.groovy Mon Mar 21 12:22:47 2011
@@ -27,6 +27,7 @@ import org.ofbiz.entity.condition.Entity
 import org.ofbiz.entity.condition.EntityOperator;
 
 andExprs = [];
+fieldValue = null;
 entityName = context.entityName;
 searchFields = context.searchFields;
 displayFields = context.displayFields ?: searchFields;