This is an automated email from the ASF dual-hosted git repository. jleroux pushed a commit to branch release18.12 in repository https://gitbox.apache.org/repos/asf/ofbiz-plugins.git
The following commit(s) were added to refs/heads/release18.12 by this push: new d94d591 Fixed: Exception error on ecommerce portal while trying to register new user (OFBIZ-) d94d591 is described below commit d94d5910f7e859d8edb209daf22a8aa863aebe17 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