From: Christopher Burger Date: Tue, 20 Jun 2017 13:04:14 +0000 (-0400) Subject: RT# 75817 - Added the ability to set contacts password on the backend X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=e1c33eb543954d13ca0984c2a768fe3d98bbb75a RT# 75817 - Added the ability to set contacts password on the backend Conflicts: httemplate/elements/validate_password.html httemplate/misc/xmlhttp-validate_password.html --- diff --git a/httemplate/elements/validate_password.html b/httemplate/elements/validate_password.html index 01e8b94d9..cb1502939 100644 --- a/httemplate/elements/validate_password.html +++ b/httemplate/elements/validate_password.html @@ -28,11 +28,7 @@ function add_password_validation (fieldid) { var resultfield = document.getElementById(fieldid); if (this.value) { resultfield.innerHTML = 'Validating password...'; - validate_password('fieldid',fieldid, - 'svcnum',<% $opt{'svcnum'} |js_string %>, - 'pkgnum',<% $opt{'pkgnum'} |js_string %>, - 'contactnum',<% $opt{'contactnum'} |js_string %>, - 'password',this.value, + validate_password('fieldid',fieldid,'svcnum','<% $opt{'svcnum'} |js_string %>','pkgnum','<% $opt{'pkgnum'} |js_string %>','contactnum','<% $opt{'contactnum'} |js_string %>','password',this.value, function (result) { result = JSON.parse(result); var resultfield = document.getElementById(result.fieldid);