Commit 95bab525 authored by Ryan Graham's avatar Ryan Graham Committed by ryan

Two bug fixes for IE:

1. table width (was at 100%) on the host settings page, pushed some of the grey box off the right edge of the screen. 
2. the big of javascript that set the password field focus was broken (from before), not calling the correct field name (password, when it should have been newPassword).

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@4827 b35dd754-fafc-0310-a699-88a17e54d16e
parent ca375699
......@@ -274,7 +274,7 @@ function checkClick() {
<script language="JavaScript" type="text/javascript">
<!--
document.acctform.password.focus();
document.acctform.newPassword.focus();
//-->
</script>
......
......@@ -117,7 +117,7 @@
<form action="setup-host-settings.jsp" name="f" method="post">
<table cellpadding="3" cellspacing="0" border="0" width="100%">
<table cellpadding="3" cellspacing="0" border="0">
<tr valign="top">
<td width="1%" nowrap align="right">
<fmt:message key="setup.host.settings.domain" />
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment