summaryrefslogtreecommitdiffstats
path: root/buglist.cgi
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2006-01-20 04:47:16 +0100
committerlpsolit%gmail.com <>2006-01-20 04:47:16 +0100
commita75e969bae29b41c1b1b6d8020e8555fb4e821f9 (patch)
tree272c5d8bf56662670c91fdbadb63ef3fb8b55d42 /buglist.cgi
parenta47eba439a545a7f4542be3410fd1752d9c19c30 (diff)
downloadbugzilla-a75e969bae29b41c1b1b6d8020e8555fb4e821f9.tar.gz
bugzilla-a75e969bae29b41c1b1b6d8020e8555fb4e821f9.tar.xz
Bug 323769: Column names for reporter, assignee and QA contact realnames are incorrect when exporting a bug list to non-HTML formats - Patch by Frédéric Buclin <LpSolit@gmail.com> r=wurblzap a=justdave
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-xbuglist.cgi6
1 files changed, 3 insertions, 3 deletions
diff --git a/buglist.cgi b/buglist.cgi
index 079a8b7b4..2ff808451 100755
--- a/buglist.cgi
+++ b/buglist.cgi
@@ -542,9 +542,9 @@ if ($format->{'extension'} eq 'html') {
DefineColumn("reporter_realname" , "CASE WHEN map_reporter.realname = '' THEN map_reporter.login_name ELSE map_reporter.realname END AS reporter_realname" , "Reporter" );
DefineColumn("qa_contact_realname" , "CASE WHEN map_qa_contact.realname = '' THEN map_qa_contact.login_name ELSE map_qa_contact.realname END AS qa_contact_realname" , "QA Contact");
} else {
- DefineColumn("assigned_to_realname", "map_assigned_to.realname" , "Assignee" );
- DefineColumn("reporter_realname" , "map_reporter.realname" , "Reporter" );
- DefineColumn("qa_contact_realname" , "map_qa_contact.realname" , "QA Contact" );
+ DefineColumn("assigned_to_realname", "map_assigned_to.realname AS assigned_to_realname", "Assignee" );
+ DefineColumn("reporter_realname" , "map_reporter.realname AS reporter_realname" , "Reporter" );
+ DefineColumn("qa_contact_realname" , "map_qa_contact.realname AS qa_contact_realname" , "QA Contact");
}
DefineColumn("bug_status" , "bugs.bug_status" , "Status" );
DefineColumn("resolution" , "bugs.resolution" , "Resolution" );