From 25e79eb046ed379b91f9c6930cc1006ee8a30bc4 Mon Sep 17 00:00:00 2001 From: "myk%mozilla.org" <> Date: Tue, 5 Aug 2003 07:31:19 +0000 Subject: Fix for bug 204560: display alias in long listing. Fix by GavinS . r=myk, a=myk --- long_list.cgi | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'long_list.cgi') diff --git a/long_list.cgi b/long_list.cgi index 08bc6679f..1f8126d19 100755 --- a/long_list.cgi +++ b/long_list.cgi @@ -44,6 +44,7 @@ my $cgi = Bugzilla->cgi; my $generic_query = " SELECT bugs.bug_id, + IFNULL(bugs.alias,''), products.name, bugs.version, bugs.rep_platform, @@ -82,7 +83,7 @@ foreach my $bug_id (split(/[:,]/, $buglist)) { my %bug; my @row = FetchSQLData(); - foreach my $field ("bug_id", "product", "version", "rep_platform", + foreach my $field ("bug_id", "alias", "product", "version", "rep_platform", "op_sys", "bug_status", "resolution", "priority", "bug_severity", "component", "assigned_to", "reporter", "bug_file_loc", "short_desc", "target_milestone", -- cgit v1.2.3-24-g4f1b