diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2013-04-05 22:00:12 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2013-04-05 22:00:12 +0200 |
commit | b275e627c0957e4a24f37317f47a89f97c68c81f (patch) | |
tree | f79979ab5c0fc0c165a29d39598f0b336d25f470 | |
parent | eb3f79d571264941970ed750adad5a81205a3c2f (diff) | |
download | bugzilla-b275e627c0957e4a24f37317f47a89f97c68c81f.tar.gz bugzilla-b275e627c0957e4a24f37317f47a89f97c68c81f.tar.xz |
Bug 857562: ajax_user_autocompletion param ignored on Search by People fields
r=dkl a=LpSolit
-rw-r--r-- | template/en/default/search/form.html.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/en/default/search/form.html.tmpl b/template/en/default/search/form.html.tmpl index 41e116518..241ade088 100644 --- a/template/en/default/search/form.html.tmpl +++ b/template/en/default/search/form.html.tmpl @@ -341,12 +341,12 @@ TUI_hide_default('information_query'); [% " selected" IF default.emailtype.$n == qv.name %]>[% qv.description %]</option> [% END %] </select> - [% IF feature_enabled('jsonrpc') %] + [% IF feature_enabled('jsonrpc') && Param('ajax_user_autocompletion') %] <div id="email[% n %]_autocomplete"> [% END %] <input name="email[% n %]" class="email" id="email[% n %]" value="[% default.email.$n FILTER html %]"> - [% IF feature_enabled('jsonrpc') %] + [% IF feature_enabled('jsonrpc') && Param('ajax_user_autocompletion') %] <div id="email[% n %]_autocomplete_container"></div> </div> <script type="text/javascript"> |