This is an automated email from the ASF dual-hosted git repository. jleroux pushed a commit to branch release17.12 in repository https://gitbox.apache.org/repos/asf/ofbiz-plugins.git
The following commit(s) were added to refs/heads/release17.12 by this push: new e7f1984 Fixed: Exception error on ecommerce portal while trying to register new user (OFBIZ-) e7f1984 is described below commit e7f198427b36482f294d08d6976e910b3d0f1dee Author: Jacques Le Roux <jacques.le.r...@les7arts.com> AuthorDate: Sat Feb 27 14:08:42 2021 +0100 Fixed: Exception error on ecommerce portal while trying to register new user (OFBIZ-) Missing import statement in the groovy script on the new customer registration page. Thanks: Pradeep Choudhary --- ecommerce/groovyScripts/customer/NewCustomer.groovy | 1 + 1 file changed, 1 insertion(+) diff --git a/ecommerce/groovyScripts/customer/NewCustomer.groovy b/ecommerce/groovyScripts/customer/NewCustomer.groovy index cfa093b..67160a9 100644 --- a/ecommerce/groovyScripts/customer/NewCustomer.groovy +++ b/ecommerce/groovyScripts/customer/NewCustomer.groovy @@ -18,6 +18,7 @@ */ import org.apache.ofbiz.base.util.UtilProperties +import org.apache.ofbiz.base.util.UtilHttp import org.apache.ofbiz.base.util.UtilMisc import org.apache.ofbiz.product.store.ProductStoreWorker