IE/Firefox consistency fixes (make IE not look screwed up)

This commit is contained in:
james 2008-11-03 00:42:21 +00:00
parent 3b845d2d36
commit b9253d4114

View File

@ -153,47 +153,46 @@
echo "<form method=\"post\" action=\"judges_timeslots.php\">"; echo "<form method=\"post\" action=\"judges_timeslots.php\">";
echo "<input type=\"hidden\" name=\"action\" value=\"addmultiple\">\n"; echo "<input type=\"hidden\" name=\"action\" value=\"addmultiple\">\n";
echo "<table border=0>"; echo "<table border=\"0\">";
echo "<tr><td>"; echo "<tr><td>";
echo i18n("Add"); echo i18n("Add");
echo "</td><td width=\"50\">";
echo "<input type=\"text\" name=\"addnum\" size=\"4\">";
echo "</td><td>"; echo "</td><td>";
echo "<input type=\"text\" name=\"addnum\" size=\"4\">&nbsp;";
echo i18n("new timeslots"); echo i18n("new timeslots");
echo "</td></tr><tr><td>"; echo "</td></tr>";
echo "<tr><td>";
echo i18n("On date"); echo i18n("On date");
echo "</td><td colspan=\"2\">"; echo "</td><td>";
emit_date_selector("date",$date); emit_date_selector("date",$date);
echo "</td></tr><tr><td>"; echo "</td></tr>";
echo "<tr><td>";
echo i18n("Starting timeslots at"); echo i18n("Starting timeslots at");
echo "</td><td colspan=\"2\">"; echo "</td><td>";
emit_time_selector("starttime"); emit_time_selector("starttime");
echo "</td></tr>"; echo "</td></tr>";
echo "<tr><td>"; echo "<tr><td>";
echo i18n("With a duration of"); echo i18n("With a duration of");
echo "</td><td>"; echo "</td><td>";
echo "<input type=\"text\" name=\"duration\" size=\"4\">"; echo "<input type=\"text\" name=\"duration\" size=\"4\">&nbsp;";
echo "</td><td>";
echo i18n("minutes"); echo i18n("minutes");
echo "</td></tr>"; echo "</td></tr>";
echo "<tr><td>"; echo "<tr><td>";
echo i18n("And a break of"); echo i18n("And a break of");
echo "</td><td>"; echo "</td><td>";
echo "<input type=\"text\" name=\"break\" size=\"4\">"; echo "<input type=\"text\" name=\"break\" size=\"4\">&nbsp;";
echo "</td><td>";
echo i18n("minutes"); echo i18n("minutes");
echo "</td></tr>"; echo "</td></tr>";
echo "<tr><td align=\"center\">"; echo "<tr><td align=\"center\">";
if($allowdivisional=="yes") $ch="checked=\"checked\""; else $ch=""; if($allowdivisional=="yes") $ch="checked=\"checked\""; else $ch="";
echo "<input $ch type=\"checkbox\" name=\"allowdivisional\" value=\"yes\">"; echo "<input $ch type=\"checkbox\" name=\"allowdivisional\" value=\"yes\">";
echo "</td><td colspan=\"2\">"; echo "</td><td>";
echo i18n("Allow this timeslot to be used by the automatic judges scheduler for divisional awards"); echo i18n("Allow this timeslot to be used by the automatic judges scheduler for divisional awards");
echo "</td></tr>"; echo "</td></tr>";
echo "<tr><td colspan=\"3\">"; echo "<tr><td colspan=\"2\">";
echo "<input type=\"submit\" value=\"".i18n("Add these timeslots")."\">"; echo "<input type=\"submit\" value=\"".i18n("Add these timeslots")."\">";
echo "</td></tr>"; echo "</td></tr>";
echo "</table>"; echo "</table>";