From: Dylan William Hardison Date: Sat, 26 Aug 2017 01:34:34 +0000 (-0400) Subject: Bug 1394014 - Old abusive username appears in autocomplete X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0fdb8be1599283df80ae3b52f2254b847152a60f;p=thirdparty%2Fbugzilla.git Bug 1394014 - Old abusive username appears in autocomplete --- diff --git a/Bugzilla/Elastic.pm b/Bugzilla/Elastic.pm index 3a3829e3b..a01d1be42 100644 --- a/Bugzilla/Elastic.pm +++ b/Bugzilla/Elastic.pm @@ -50,7 +50,7 @@ sub suggest_users { sub _suggest_users_fallback { my ($self, $text) = @_; - my $users = Bugzilla::User::match($text, 25, 0); + my $users = Bugzilla::User::match($text, 25, 1); return [ map { { real_name => $_->name, name => $_->login } } @$users]; }