diff options
Diffstat (limited to 'httemplate/view')
-rw-r--r-- | httemplate/view/svc_acct/change_svc.html | 2 | ||||
-rw-r--r-- | httemplate/view/svc_acct/change_svc_form.html | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/httemplate/view/svc_acct/change_svc.html b/httemplate/view/svc_acct/change_svc.html index ed4aadd5f..045621488 100644 --- a/httemplate/view/svc_acct/change_svc.html +++ b/httemplate/view/svc_acct/change_svc.html @@ -9,7 +9,7 @@ % } </SELECT> - <INPUT NAME="submit" TYPE="submit" VALUE="<% mt('Change') |h %>" disabled> + <INPUT NAME="submitButton" TYPE="submit" VALUE="<% mt('Change') |h %>" disabled> % } diff --git a/httemplate/view/svc_acct/change_svc_form.html b/httemplate/view/svc_acct/change_svc_form.html index 4f10922ba..7e2ef026d 100644 --- a/httemplate/view/svc_acct/change_svc_form.html +++ b/httemplate/view/svc_acct/change_svc_form.html @@ -2,9 +2,9 @@ <SCRIPT TYPE="text/javascript"> function enable_change () { if ( document.OneTrueForm.svcpart.selectedIndex > 1 ) { - document.OneTrueForm.submit.disabled = false; + document.OneTrueForm.submitButton.disabled = false; } else { - document.OneTrueForm.submit.disabled = true; + document.OneTrueForm.submitButton.disabled = true; } } </SCRIPT> |