diff options
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) { |