[ofbiz-plugins] branch release17.12 updated: Fixed: Exception error on ecommerce portal while trying to register new user (OFBIZ-)

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

[ofbiz-plugins] branch release17.12 updated: Fixed: Exception error on ecommerce portal while trying to register new user (OFBIZ-)

jleroux@apache.org
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 <[hidden email]>
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