Fix for bug 62729, "Add real name capability to bug_list.cgi". Patch by

Toms Baugis, r=kiko, 2xr=joel.


git-svn-id: svn://10.0.0.236/trunk@132923 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
kiko%async.com.br
2002-11-04 00:57:56 +00:00
parent 2ff0da9f87
commit 615c041c85
5 changed files with 18 additions and 4 deletions

View File

@@ -370,8 +370,11 @@ DefineColumn("severity" , "bugs.bug_severity" , "Severity"
DefineColumn("priority" , "bugs.priority" , "Priority" );
DefineColumn("platform" , "bugs.rep_platform" , "Platform" );
DefineColumn("owner" , "map_assigned_to.login_name" , "Owner" );
DefineColumn("owner_realname" , "map_assigned_to.realname" , "Owner" );
DefineColumn("reporter" , "map_reporter.login_name" , "Reporter" );
DefineColumn("reporter_realname" , "map_reporter.realname" , "Reporter" );
DefineColumn("qa_contact" , "map_qa_contact.login_name" , "QA Contact" );
DefineColumn("qa_contact_realname", "map_qa_contact.realname" , "QA Contact" );
DefineColumn("status" , "bugs.bug_status" , "State" );
DefineColumn("resolution" , "bugs.resolution" , "Result" );
DefineColumn("summary" , "bugs.short_desc" , "Summary" );