diff options
Diffstat (limited to 'Bugzilla/Search.pm')
-rw-r--r-- | Bugzilla/Search.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index 73235ded3..edb59e40e 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -945,6 +945,8 @@ sub _sql_limit { sub _column_join { my ($self, $field) = @_; + # The _realname fields require the same join as the username fields. + $field =~ s/_realname$//; my $join_info = COLUMN_JOINS->{$field}; if ($join_info) { # Don't allow callers to modify the constant. |