From 81ca35d78023ef1491333f42848a7027e8c727f7 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" Date: Thu, 19 Jan 2006 19:50:34 +0000 Subject: [PATCH] =?UTF-8?q?Bug=20323769:=20Column=20names=20for=20reporter?= =?UTF-8?q?,=20assignee=20and=20QA=20contact=20realnames=20are=20incorrect?= =?UTF-8?q?=20when=20exporting=20a=20bug=20list=20to=20non-HTML=20formats?= =?UTF-8?q?=20-=20Patch=20by=20Fr=C3=A9d=C3=A9ric=20Buclin=20=20r=3Dwurblzap=20a=3Djustdave?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: svn://10.0.0.236/trunk@187831 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/buglist.cgi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mozilla/webtools/bugzilla/buglist.cgi b/mozilla/webtools/bugzilla/buglist.cgi index 079a8b7b4f3..2ff80845104 100755 --- a/mozilla/webtools/bugzilla/buglist.cgi +++ b/mozilla/webtools/bugzilla/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" );