diff options
author | Reed Loden <reed@reedloden.com> | 2010-07-05 09:42:01 +0200 |
---|---|---|
committer | Reed Loden <reed@reedloden.com> | 2010-07-05 09:42:01 +0200 |
commit | bf3e63a75b8fbc9d613ec3fd6289a178731692e4 (patch) | |
tree | e2e063f03682f85368cb462d525b35e3114053db /template/en/default/bug/create | |
parent | e598bc84cff9a281d312651332465c3899e3f49d (diff) | |
download | bugzilla-bf3e63a75b8fbc9d613ec3fd6289a178731692e4.tar.gz bugzilla-bf3e63a75b8fbc9d613ec3fd6289a178731692e4.tar.xz |
Bug 455810 - Add autocomplete support to the keywords field
* Special thanks to Guy Pyrzak for the original patch
[r=mkanat a=mkanat]
Diffstat (limited to 'template/en/default/bug/create')
-rw-r--r-- | template/en/default/bug/create/create.html.tmpl | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/template/en/default/bug/create/create.html.tmpl b/template/en/default/bug/create/create.html.tmpl index 0733de02a..fdac893c0 100644 --- a/template/en/default/bug/create/create.html.tmpl +++ b/template/en/default/bug/create/create.html.tmpl @@ -630,14 +630,11 @@ TUI_hide_default('expert_fields'); [% IF user.in_group('editbugs', product.id) %] [% IF use_keywords %] <tr> - [% INCLUDE "bug/field-label.html.tmpl" - field = bug_fields.keywords editable = 1 - desc_url = "describekeywords.cgi" + [% INCLUDE bug/field.html.tmpl + bug = default, field = bug_fields.keywords, editable = 1, + value = keywords, desc_url = "describekeywords.cgi", + value_span = 2 %] - <td colspan="3"> - <input id="keywords" name="keywords" size="40" - value="[% keywords FILTER html %]"> (optional) - </td> </tr> [% END %] |