diff options
Diffstat (limited to 'editowners.cgi')
-rwxr-xr-x | editowners.cgi | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/editowners.cgi b/editowners.cgi index 647bdeda0..1bfb6ac13 100755 --- a/editowners.cgi +++ b/editowners.cgi @@ -44,9 +44,9 @@ PutHeader("Edit Component Owners"); print "This lets you edit the owners of the program components of bugzilla.\n"; -print "<FORM METHOD=\"POST\" ACTION=\"doeditowners.cgi\">\n<TABLE>\n"; +print "<form method=post action=doeditowners.cgi><table>\n"; -my $rowbreak = "<TR><TD COLSPAN=\"2\"><HR></TD></TR>"; +my $rowbreak = "<tr><td colspan=2><hr></td></tr>"; SendSQL("select program, value, initialowner from components order by program, value"); @@ -56,17 +56,17 @@ my $curProgram = ""; while (@line = FetchSQLData()) { if ($line[0] ne $curProgram) { print $rowbreak; - print "<TR><TH ALIGN=\"RIGHT\" VALIGN=\"TOP\">$line[0]:</TH><TD></TD></TR>\n"; + print "<tr><th align=right valign=top>$line[0]:</th><td></td></tr>\n"; $curProgram = $line[0]; } - print "<TR><TD VALIGN=\"TOP\">$line[1]</TD><TD><INPUT SIZE=\"80\" "; + print "<tr><td valign = top>$line[1]</td><td><input size=80 "; print "name=\"$line[0]_$line[1]\" value=\"$line[2]\"></td></tr>\n"; } print "</table>\n"; -print "<INPUT TYPE=\"submit\" VALUE=\"Submit changes\">\n"; +print "<input type=submit value=\"Submit changes\">\n"; print "</form>\n"; -print "<P><A HREF=\"query.cgi\">Skip all this, and go back to the query page</A>\n"; +print "<p><a href=query.cgi>Skip all this, and go back to the query page</a>\n"; |