diff options
author | Christopher Burger <burgerc@freeside.biz> | 2017-06-20 09:04:14 -0400 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2017-08-18 12:49:49 -0400 |
commit | e1c33eb543954d13ca0984c2a768fe3d98bbb75a (patch) | |
tree | 1c27abe65a7b94a145053f10826f71b4c8cc42e9 | |
parent | 96ae0e14d1e0113858ace78ea4586bc3ad11c844 (diff) |
RT# 75817 - Added the ability to set contacts password on the backend
Conflicts:
httemplate/elements/validate_password.html
httemplate/misc/xmlhttp-validate_password.html
-rw-r--r-- | httemplate/elements/validate_password.html | 6 |
1 files changed, 1 insertions, 5 deletions
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 = '<SPAN STYLE="color: blue;">Validating password...</SPAN>'; - 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); |