diff options
author | terry%netscape.com <> | 1998-08-27 04:25:45 +0200 |
---|---|---|
committer | terry%netscape.com <> | 1998-08-27 04:25:45 +0200 |
commit | 055c99344652012d89f5387f07372260506e34d1 (patch) | |
tree | 1f0a4b7bb6ecfeab4fcf762ab76f6a0a858a3d4b | |
parent | 482763c95359bd0352878542826693064d9e365e (diff) | |
download | bugzilla-055c99344652012d89f5387f07372260506e34d1.tar.gz bugzilla-055c99344652012d89f5387f07372260506e34d1.tar.xz |
Stop looking for "target_fix_version".
-rwxr-xr-x | long_list.cgi | 6 | ||||
-rwxr-xr-x | processmail | 10 |
2 files changed, 4 insertions, 12 deletions
diff --git a/long_list.cgi b/long_list.cgi index 3d575cf77..af1223116 100755 --- a/long_list.cgi +++ b/long_list.cgi @@ -38,7 +38,6 @@ select assign.login_name, report.login_name, bugs.component, - bugs.target_fix_version, bugs.bug_file_loc, bugs.short_desc from bugs,profiles assign,profiles report @@ -67,9 +66,8 @@ foreach bug [split $FORM(buglist) :] { puts "<TD><B>Assigned To:</B> [lindex $result 9]" puts "<TD><B>Reported By:</B> [lindex $result 10]" puts "<TR><TD><B>Component:</B> [lindex $result 11]" - puts "<TD><B>Target Fix Version:</B> [lindex $result 12]" - puts "<TR><TD COLSPAN=6><B>URL:</B> [html_quote [lindex $result 13]]" - puts "<TR><TD COLSPAN=6><B>Summary :</B> [html_quote [lindex $result 14]]" + puts "<TR><TD COLSPAN=6><B>URL:</B> [html_quote [lindex $result 12]]" + puts "<TR><TD COLSPAN=6><B>Summary :</B> [html_quote [lindex $result 13]]" puts "<TR><TD><B>Description :</B>\n</TABLE>" puts "<PRE>[html_quote [GetLongDescription $bug]]</PRE>" puts "<HR>" diff --git a/processmail b/processmail index 7992b0153..46d53c9ee 100755 --- a/processmail +++ b/processmail @@ -48,11 +48,6 @@ proc DescCC {cclist} { return "Cc: [join $cclist ", "]\n" } -proc DescFixVersion {v} { - if {[cequal $v ""]} return "" - return "Fix-Version: $v\n" -} - proc GetBugText {id} { global bug @@ -72,7 +67,6 @@ select assigned_to, reporter, bug_file_loc, - target_fix_version, short_desc, component from bugs @@ -88,7 +82,7 @@ where bug_id = $id"; set count 0 foreach field { bug_id product version rep_platform op_sys bug_status resolution priority bug_severity area assigned_to - reporter bug_file_loc target_fix_version short_desc + reporter bug_file_loc short_desc component } { set bug($field) [lindex $ret $count] incr count @@ -116,7 +110,7 @@ Area: $bug(area) AssignedTo: $bug(assigned_to) ReportedBy: $bug(reporter) URL: $bug(bug_file_loc) -[DescCC $bug(cclist)][DescFixVersion $bug(target_fix_version)]Summary: $bug(short_desc) +[DescCC $bug(cclist)]Summary: $bug(short_desc) $bug(long_desc)" |