Commit a39343c1 authored by cyeh%bluemartini.com's avatar cyeh%bluemartini.com

fixes for the attachment widths. fix by dave@intrec.com (Dave Miller),

original bug found by timeless@bemail.org
parent 5c395c38
...@@ -255,7 +255,7 @@ if (Param("useqacontact")) { ...@@ -255,7 +255,7 @@ if (Param("useqacontact")) {
print " print "
<TR> <TR>
<TD ALIGN=\"RIGHT\"><B>QA Contact:</B> <TD ALIGN=\"RIGHT\"><B>QA Contact:</B>
<TD COLSPAN=6> <TD COLSPAN=7>
<INPUT NAME=qa_contact VALUE=\"" . <INPUT NAME=qa_contact VALUE=\"" .
value_quote($name) . value_quote($name) .
"\" SIZE=60></TD> "\" SIZE=60></TD>
...@@ -266,11 +266,11 @@ if (Param("useqacontact")) { ...@@ -266,11 +266,11 @@ if (Param("useqacontact")) {
print " print "
<TR> <TR>
<TD ALIGN=\"RIGHT\">$URL <TD ALIGN=\"RIGHT\">$URL
<TD COLSPAN=8> <TD COLSPAN=7>
<INPUT NAME=bug_file_loc VALUE=\"$bug{'bug_file_loc'}\" SIZE=60></TD> <INPUT NAME=bug_file_loc VALUE=\"$bug{'bug_file_loc'}\" SIZE=60></TD>
</TR><TR> </TR><TR>
<TD ALIGN=\"RIGHT\"><B>Summary:</B> <TD ALIGN=\"RIGHT\"><B>Summary:</B>
<TD COLSPAN=8> <TD COLSPAN=7>
<INPUT NAME=short_desc VALUE=\"" . <INPUT NAME=short_desc VALUE=\"" .
value_quote($bug{'short_desc'}) . value_quote($bug{'short_desc'}) .
"\" SIZE=60></TD> "\" SIZE=60></TD>
...@@ -280,7 +280,7 @@ if (Param("usestatuswhiteboard")) { ...@@ -280,7 +280,7 @@ if (Param("usestatuswhiteboard")) {
print " print "
<TR> <TR>
<TD ALIGN=\"RIGHT\"><B>Status Whiteboard:</B> <TD ALIGN=\"RIGHT\"><B>Status Whiteboard:</B>
<TD COLSPAN=8> <TD COLSPAN=7>
<INPUT NAME=status_whiteboard VALUE=\"" . <INPUT NAME=status_whiteboard VALUE=\"" .
value_quote($bug{'status_whiteboard'}) . value_quote($bug{'status_whiteboard'}) .
"\" SIZE=60></TD> "\" SIZE=60></TD>
...@@ -300,7 +300,7 @@ if (@::legal_keywords) { ...@@ -300,7 +300,7 @@ if (@::legal_keywords) {
print qq{ print qq{
<TR> <TR>
<TD ALIGN=right><B><A HREF="describekeywords.cgi">Keywords</A>:</B> <TD ALIGN=right><B><A HREF="describekeywords.cgi">Keywords</A>:</B>
<TD COLSPAN=8><INPUT NAME="keywords" VALUE="$value" SIZE=60></TD> <TD COLSPAN=7><INPUT NAME="keywords" VALUE="$value" SIZE=60></TD>
</TR> </TR>
}; };
} }
...@@ -314,9 +314,9 @@ while (MoreSQLData()) { ...@@ -314,9 +314,9 @@ while (MoreSQLData()) {
} }
my $link = "showattachment.cgi?attach_id=$attachid"; my $link = "showattachment.cgi?attach_id=$attachid";
$desc = value_quote($desc); $desc = value_quote($desc);
print qq{<td><a href="$link">$date</a></td><td colspan=4>$desc</td></tr><tr><td></td>}; print qq{<td><a href="$link">$date</a></td><td colspan=6>$desc</td></tr><tr><td></td>};
} }
print "<td colspan=8><a href=\"createattachment.cgi?id=$id\">Create a new attachment</a> (proposed patch, testcase, etc.)</td></tr></table>\n"; print "<td colspan=7><a href=\"createattachment.cgi?id=$id\">Create a new attachment</a> (proposed patch, testcase, etc.)</td></tr></table>\n";
sub EmitDependList { sub EmitDependList {
......
...@@ -36,6 +36,7 @@ use RelationSet; ...@@ -36,6 +36,7 @@ use RelationSet;
use vars %::versions, use vars %::versions,
%::components, %::components,
%::COOKIE, %::COOKIE,
%::MFORM,
%::keywordsbyname, %::keywordsbyname,
%::legal_keywords, %::legal_keywords,
%::legal_opsys, %::legal_opsys,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment