diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-08-02 02:52:17 +0200 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-08-02 02:52:17 +0200 |
commit | 3cfa98677f31d4a6660c330fa9ec0d5206fb3565 (patch) | |
tree | 494c86d5ba256aa761a660bdf41d0051671822a8 /template | |
parent | 16f1833e572297edd89faddb69364e09efecdfdb (diff) | |
download | bugzilla-3cfa98677f31d4a6660c330fa9ec0d5206fb3565.tar.gz bugzilla-3cfa98677f31d4a6660c330fa9ec0d5206fb3565.tar.xz |
Bug 578572: Make the user autocomplete and keyword autocomplete behave
similarly, and fix a race condition in user autocomplete where sometimes
an older result would appear after a newer result, overriding the newer
result.
r=pyrzak, a=mkanat
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/global/header.html.tmpl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/template/en/default/global/header.html.tmpl b/template/en/default/global/header.html.tmpl index a35094793..799f4898f 100644 --- a/template/en/default/global/header.html.tmpl +++ b/template/en/default/global/header.html.tmpl @@ -176,7 +176,8 @@ #%] var BUGZILLA = { param: { - cookiepath: '[% Param('cookiepath') FILTER js %]' + cookiepath: '[% Param('cookiepath') FILTER js %]', + maxusermatches: [% Param('maxusermatches') FILTER js %] }, string: { |