diff options
author | Dylan William Hardison <dylan@hardison.net> | 2017-08-26 03:34:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-26 03:34:34 +0200 |
commit | 0fdb8be1599283df80ae3b52f2254b847152a60f (patch) | |
tree | 24667eaf6b660bdf8c0e98975c9012816494e6ea /Bugzilla | |
parent | 5be760d8cbdcf0d895b0f13a28b579d771bc192c (diff) | |
download | bugzilla-0fdb8be1599283df80ae3b52f2254b847152a60f.tar.gz bugzilla-0fdb8be1599283df80ae3b52f2254b847152a60f.tar.xz |
Bug 1394014 - Old abusive username appears in autocomplete
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Elastic.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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]; } |