diff options
author | lpsolit%gmail.com <> | 2005-06-21 04:16:26 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-06-21 04:16:26 +0200 |
commit | 5f173728faa3420461cb6f77b32f392bd58a1777 (patch) | |
tree | d61c10f776bc7ba3f01b1acbb62d76c3a6a0ef20 /buglist.cgi | |
parent | de027530e15fc988f94411784abf368971ff8155 (diff) | |
download | bugzilla-5f173728faa3420461cb6f77b32f392bd58a1777.tar.gz bugzilla-5f173728faa3420461cb6f77b32f392bd58a1777.tar.xz |
Bug 76507: Replace "owner" by "assignee" (and "initial" by "default") - Patch by Tiago R. Mello <timello@async.com.br> r=LpSolit a=myk
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-x | buglist.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buglist.cgi b/buglist.cgi index c0ccf836c..106236175 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -862,7 +862,7 @@ while (my @row = $buglist_sth->fetchrow_array()) { $bug->{'opendate'} = DiffDate($bug->{'opendate'}); } - # Record the owner, product, and status in the big hashes of those things. + # Record the assignee, product, and status in the big hashes of those things. $bugowners->{$bug->{'assigned_to'}} = 1 if $bug->{'assigned_to'}; $bugproducts->{$bug->{'product'}} = 1 if $bug->{'product'}; $bugstatuses->{$bug->{'bug_status'}} = 1 if $bug->{'bug_status'}; |