summaryrefslogtreecommitdiffstats
path: root/bug_form.pl
diff options
context:
space:
mode:
authorbryce-mozilla%nextbus.com <>1999-06-15 13:25:28 +0200
committerbryce-mozilla%nextbus.com <>1999-06-15 13:25:28 +0200
commita59f318781f4f189484ba21206119c36ef3becf8 (patch)
tree1a2385d83a124ad8fa0973933d5903c26301486a /bug_form.pl
parent991e9d13f2bf7f7dafde5fc602b1612a3f88943c (diff)
downloadbugzilla-a59f318781f4f189484ba21206119c36ef3becf8.tar.gz
bugzilla-a59f318781f4f189484ba21206119c36ef3becf8.tar.xz
Fix several browsers, Lynx and Opera at least. HTML syntax errors here
and there were fixed, and serverpush was restricted only to the versions of Mozilla known to support it.
Diffstat (limited to 'bug_form.pl')
-rw-r--r--bug_form.pl9
1 files changed, 2 insertions, 7 deletions
diff --git a/bug_form.pl b/bug_form.pl
index a2fb1056b..9a59ed94d 100644
--- a/bug_form.pl
+++ b/bug_form.pl
@@ -207,8 +207,6 @@ if (defined $URL && $URL ne "none" && $URL ne "NULL" && $URL ne "") {
}
print "
-<HEAD><TITLE>Bug $id -- " . html_quote($bug{'short_desc'}) .
- "</TITLE></HEAD><BODY>
<FORM NAME=changeform METHOD=POST ACTION=\"process_bug.cgi\">
<INPUT TYPE=HIDDEN NAME=\"delta_ts\" VALUE=\"$bug{'delta_ts'}\">
<INPUT TYPE=HIDDEN NAME=\"longdesclength\" VALUE=\"$longdesclength\">
@@ -323,7 +321,7 @@ while (MoreSQLData()) {
print qq{<td><a href="$link">$date</a></td><td colspan=4>$desc</td></tr><tr><td></td>};
$knownattachments{$attachid} = 1;
}
-print "<td colspan=6><a href=createattachment.cgi?id=$id>Create a new attachment</a> (proposed patch, testcase, etc.)</td></tr></table>\n";
+print "<td colspan=6><a href=\"createattachment.cgi?id=$id\">Create a new attachment</a> (proposed patch, testcase, etc.)</td></tr></table>\n";
sub EmitDependList {
@@ -458,7 +456,7 @@ print "
<A HREF=\"long_list.cgi?buglist=$id\">Format For Printing</A>
</B></FONT><BR>
</FORM>
-<table><tr><td align=left><B>Description:</B></td><td width=100%>&nbsp;</td>
+<table><tr><td align=left><B>Description:</B></td><td width=\"100%\">&nbsp;</td>
<td align=right>Opened:&nbsp;$bug{'creation_ts'}</td></tr></table>
<HR>
<PRE>
@@ -472,9 +470,6 @@ print "
# long_list.cgi line:
# <A HREF=\"edit_desc.cgi?id=$id\">Edit Long Description</A>
-
navigation_header();
-print "</BODY>\n";
-
1;