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 /long_list.cgi | |
parent | 482763c95359bd0352878542826693064d9e365e (diff) | |
download | bugzilla-055c99344652012d89f5387f07372260506e34d1.tar.gz bugzilla-055c99344652012d89f5387f07372260506e34d1.tar.xz |
Stop looking for "target_fix_version".
Diffstat (limited to 'long_list.cgi')
-rwxr-xr-x | long_list.cgi | 6 |
1 files changed, 2 insertions, 4 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>" |