diff options
author | Christopher Burger <burgerc@freeside.biz> | 2017-08-01 15:08:57 -0400 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2017-08-18 13:09:24 -0400 |
commit | ec8a6d7d6c309c1d452f690cc0f3f70b8da2e3be (patch) | |
tree | d12fd9ec2693eccc1a1939441b6ad3351912fbbe /httemplate | |
parent | a08453e81bddef781785954516d4ca176bf7a6d8 (diff) |
RT# 75817 - fixed enable selection to send password reset and to allow you to set password in one step
Diffstat (limited to 'httemplate')
-rw-r--r-- | httemplate/elements/contact.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/elements/contact.html b/httemplate/elements/contact.html index df2107ac1..905d3d87d 100644 --- a/httemplate/elements/contact.html +++ b/httemplate/elements/contact.html @@ -53,7 +53,7 @@ > <OPTION VALUE="">Disabled % if ( $value || $self_base_url ) { - <OPTION VALUE="Y" <% $value eq 'Y' ? 'SELECTED' : '' %>>Enabled + <OPTION VALUE="E" <% $value eq 'Y' ? 'SELECTED' : '' %>>Enabled % if ( $value eq 'Y' && $self_base_url ) { <OPTION VALUE="R">Re-email <OPTION VALUE="P"><% $pwd_change_label %> @@ -70,7 +70,7 @@ &> <SCRIPT TYPE="text/javascript"> document.getElementById("<%$id%>_<%$field%>").onchange = function() { - if (this.value == "P") { changepw<%$id%>_toggle(true); } + if (this.value == "P" || this.value == "E") { changepw<%$id%>_toggle(true); } return false } </SCRIPT> |