diff options
author | bbaetz%student.usyd.edu.au <> | 2002-08-17 23:31:00 +0200 |
---|---|---|
committer | bbaetz%student.usyd.edu.au <> | 2002-08-17 23:31:00 +0200 |
commit | def13a98688a5d68e345e3f63969ea9396a3fe88 (patch) | |
tree | fd6a37ecf123fd64f9b75b765c7e65824ede1188 /Bugzilla | |
parent | 89462e962d6af7ee5e64f0c30ec4fefd8d74f9e8 (diff) | |
download | bugzilla-def13a98688a5d68e345e3f63969ea9396a3fe88.tar.gz bugzilla-def13a98688a5d68e345e3f63969ea9396a3fe88.tar.xz |
Bug 162854 - buglist.cgi reporter is actually owner
r=joel x2
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Search.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index 50b3ad19c..e73c6660e 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -73,7 +73,7 @@ sub init { if (&::lsearch($fieldsref, 'map_reporter.login_name') >= 0) { push @supptables, "profiles AS map_reporter"; - push @wherepart, "bugs.assigned_to = map_reporter.userid"; + push @wherepart, "bugs.reporter = map_reporter.userid"; } if (&::lsearch($fieldsref, 'map_qa_contact.login_name') >= 0) { |