diff options
author | terry%netscape.com <> | 1998-11-17 04:43:49 +0100 |
---|---|---|
committer | terry%netscape.com <> | 1998-11-17 04:43:49 +0100 |
commit | 0ca30382be83fccfc4e352096c87c56bbf8a673c (patch) | |
tree | 36342c8de0050b5bed4b67b29a14eb97e78c5e28 /editowners.cgi | |
parent | 1cf02cc7c177a691ae9980f928ae30efb84a8c99 (diff) | |
download | bugzilla-0ca30382be83fccfc4e352096c87c56bbf8a673c.tar.gz bugzilla-0ca30382be83fccfc4e352096c87c56bbf8a673c.tar.xz |
Patch by Andrew Anderson <andrew@redhat.com>. Many minor bugfixes and cleanup.
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 1bfb6ac13..647bdeda0 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><table>\n"; +print "<FORM METHOD=\"POST\" ACTION=\"doeditowners.cgi\">\n<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"; |