This is an automated email from the ASF dual-hosted git repository.

jleroux pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-plugins.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 35a2eca  Fixed: Exception error on ecommerce portal while trying to 
register new user (OFBIZ-)
35a2eca is described below

commit 35a2eca9b4d7a3b3eb4f2b9c302dab8213e388b2
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
 

Reply via email to