diff options
author | bryce-mozilla%nextbus.com <> | 1999-07-09 08:06:46 +0200 |
---|---|---|
committer | bryce-mozilla%nextbus.com <> | 1999-07-09 08:06:46 +0200 |
commit | 564e96b043a8620ea45fd3498134d73abceed968 (patch) | |
tree | e4af35a21ea9459eb8dae846d9aa56e010923387 | |
parent | a8701108553ed8afc490dbfa41ba78b03102b666 (diff) | |
download | bugzilla-564e96b043a8620ea45fd3498134d73abceed968.tar.gz bugzilla-564e96b043a8620ea45fd3498134d73abceed968.tar.xz |
More tiny battles in the HTML syntax error war
-rw-r--r-- | bug_form.pl | 2 | ||||
-rwxr-xr-x | buglist.cgi | 3 | ||||
-rwxr-xr-x | process_bug.cgi | 2 | ||||
-rwxr-xr-x | query.cgi | 4 |
4 files changed, 5 insertions, 6 deletions
diff --git a/bug_form.pl b/bug_form.pl index 9a59ed94d..0e7ef80c0 100644 --- a/bug_form.pl +++ b/bug_form.pl @@ -421,7 +421,7 @@ if ($status eq "NEW" || $status eq "ASSIGNED" || $status eq "REOPENED") { Resolve bug, mark it as duplicate of bug # <INPUT NAME=dup_id SIZE=6 ONCHANGE=\"document.changeform.knob\[$knum\].checked=true\"><br>\n"; $knum++; - my $assign_element = "<INPUT NAME=assigned_to SIZE=32 ONCHANGE=\"document.changeform.knob\[$knum\].checked=true\" VALUE=$bug{'assigned_to'}>"; + my $assign_element = "<INPUT NAME=\"assigned_to\" SIZE=32 ONCHANGE=\"document.changeform.knob\[$knum\].checked=true\" VALUE=\"$bug{'assigned_to'}\">"; print "<INPUT TYPE=radio NAME=knob VALUE=reassign> <A HREF=\"bug_status.html#assigned_to\">Reassign</A> bug to diff --git a/buglist.cgi b/buglist.cgi index 6297e2150..585949f9b 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -613,8 +613,7 @@ if ($toolong) { print "Next/Prev/First/Last buttons won't appear.</h2>\n"; } -print "<HR><I><A HREF=newquip.html>$quip\n"; -print "</I></A></CENTER>\n"; +print "<HR><A HREF=newquip.html><I>$quip</I></A></CENTER>\n"; print "<HR SIZE=10>$tablestart\n"; print $::bugl; print "</TABLE>\n"; diff --git a/process_bug.cgi b/process_bug.cgi index 314caee9b..32580cf9a 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -68,7 +68,7 @@ if ($::FORM{'product'} ne $::dontchange) { print "<input type=submit value=Commit>\n"; print "</form>\n"; print "</hr>\n"; - print "<a href=query.cgi>Cancel all this and go back to the query page.</a>\n"; + print "<a href=query.cgi>Cancel all this and go to the query page.</a>\n"; exit; } } @@ -197,7 +197,7 @@ my $emailinput2 = GenerateEmailInput(2); # javascript my $jscript = << 'ENDSCRIPT'; -<script language="Javascript1.2"> +<script language="Javascript1.2" type="text/javascript"> <!-- var cpts = new Array(); var vers = new Array(); @@ -359,7 +359,7 @@ print $jscript; my @logfields = ("[Bug creation]", @::log_columns); print " -<FORM NAME=queryForm METHOD=GET ACTION=\"buglist.cgi\"> +<FORM METHOD=GET ACTION=\"buglist.cgi\"> <table> <tr> |