diff options
author | Christopher Burger <burgerc@freeside.biz> | 2017-08-18 16:35:24 -0400 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2017-08-18 16:35:24 -0400 |
commit | 7bc4ecaaa2989870e2200f193815a1815aff7fcd (patch) | |
tree | 6acca4a63d8c5a10b679182e9fb0faf7b248762f /httemplate | |
parent | 64f8904fc5f6d1d4314d76e61a3b250c2fc18805 (diff) |
RT# 75817 - Some small updates to be able to backport to V3 because of no cust_contact table in V3
Diffstat (limited to 'httemplate')
-rw-r--r-- | httemplate/elements/validate_password.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/elements/validate_password.html b/httemplate/elements/validate_password.html index 3ca311db1..1b0688e3c 100644 --- a/httemplate/elements/validate_password.html +++ b/httemplate/elements/validate_password.html @@ -28,7 +28,7 @@ function add_password_validation (fieldid, submitid) { 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'} %>','pkgnum','<% $opt{'pkgnum'} %>','contactnum','<% $opt{'contactnum'} %>','password',this.value, function (result) { result = JSON.parse(result); var resultfield = document.getElementById(result.fieldid); |