diff options
author | kiko%async.com.br <> | 2002-11-04 09:57:50 +0100 |
---|---|---|
committer | kiko%async.com.br <> | 2002-11-04 09:57:50 +0100 |
commit | ad239c56e07db95abb7d0bf911c17c9fb68e8194 (patch) | |
tree | 389808614d325a278253424b46daa0c407e55df2 /colchange.cgi | |
parent | dad7d60d6cec4fae53f8f1c2ab900703f4237729 (diff) | |
download | bugzilla-ad239c56e07db95abb7d0bf911c17c9fb68e8194.tar.gz bugzilla-ad239c56e07db95abb7d0bf911c17c9fb68e8194.tar.xz |
Fix for bug 62729, "Add real name capability to bug_list.cgi". Patch by
Toms Baugis, r=kiko, 2xr=joel.
Diffstat (limited to 'colchange.cgi')
-rwxr-xr-x | colchange.cgi | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/colchange.cgi b/colchange.cgi index 3d1ea0476..2cdf4f630 100755 --- a/colchange.cgi +++ b/colchange.cgi @@ -42,7 +42,8 @@ GetVersionTable(); # The master list not only says what fields are possible, but what order # they get displayed in. my @masterlist = ("opendate", "changeddate", "severity", "priority", - "platform", "owner", "reporter", "status", "resolution", + "platform", "owner", "owner_realname", "reporter", + "reporter_realname", "status", "resolution", "product", "component", "version", "os", "votes"); if (Param("usetargetmilestone")) { @@ -50,6 +51,7 @@ if (Param("usetargetmilestone")) { } if (Param("useqacontact")) { push(@masterlist, "qa_contact"); + push(@masterlist, "qa_contact_realname"); } if (Param("usestatuswhiteboard")) { push(@masterlist, "status_whiteboard"); |