From bb73a94e18c732f34245b753dba060fa37181095 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Fri, 20 Jan 2006 03:50:34 +0000 Subject: [PATCH] =?utf8?q?Bug=20323769:=20Column=20names=20for=20reporter,?= =?utf8?q?=20assignee=20and=20QA=20contact=20realnames=20are=20incorrect?= =?utf8?q?=20when=20exporting=20a=20bug=20list=20to=20non-HTML=20formats?= =?utf8?q?=20-=20Patch=20by=20Fr=C3=A9d=C3=A9ric=20Buclin=20=20r=3Dwurblzap=20a=3Djustdave?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- buglist.cgi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/buglist.cgi b/buglist.cgi index 9e6358d497..aabe18f319 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -508,9 +508,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" ); -- 2.47.2