From e1c33eb543954d13ca0984c2a768fe3d98bbb75a Mon Sep 17 00:00:00 2001 From: Christopher Burger Date: Tue, 20 Jun 2017 09:04:14 -0400 Subject: [PATCH] RT# 75817 - Added the ability to set contacts password on the backend Conflicts: httemplate/elements/validate_password.html httemplate/misc/xmlhttp-validate_password.html --- httemplate/elements/validate_password.html | 6 +----- 1 file changed, 1 insertion(+), 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 = '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); -- 2.11.0