Author: jleroux
Date: Sat Aug 26 22:25:41 2017
New Revision: 1806335
URL:
http://svn.apache.org/viewvc?rev=1806335&view=revLog:
Fixes a typo in r1806332
Modified:
ofbiz/ofbiz-plugins/trunk/ecommerce/minilang/customer/QuickAnonCustomerEvents.xml
Modified: ofbiz/ofbiz-plugins/trunk/ecommerce/minilang/customer/QuickAnonCustomerEvents.xml
URL:
http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/trunk/ecommerce/minilang/customer/QuickAnonCustomerEvents.xml?rev=1806335&r1=1806334&r2=1806335&view=diff==============================================================================
--- ofbiz/ofbiz-plugins/trunk/ecommerce/minilang/customer/QuickAnonCustomerEvents.xml (original)
+++ ofbiz/ofbiz-plugins/trunk/ecommerce/minilang/customer/QuickAnonCustomerEvents.xml Sat Aug 26 22:25:41 2017
@@ -352,7 +352,7 @@ under the License.
boolean useEncryption = "true".equals(org.apache.ofbiz.base.util.UtilProperties.getPropertyValue("security", "password.encrypt"))
if (useEncryption) {
String hashType = org.apache.ofbiz.common.login.LoginServices.getHashType()
- newUserLogin.set("currentPassword", org.apache.ofbiz.base.crypto.HashCrypt.digestHash(hashType, null, (String) newUserLogin.get("currentPassword"))
+ newUserLogin.set("currentPassword", org.apache.ofbiz.base.crypto.HashCrypt.digestHash(hashType, null, (String) newUserLogin.get("currentPassword")))
}
</script>
<!-- create the UserLogin manually to get around ordering and security constraints in the service -->