diff options
author | Byron Jones <glob@mozilla.com> | 2015-05-26 17:13:16 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-05-26 17:13:16 +0200 |
commit | 95e71eea95c977eb7512156be813ede7eb161600 (patch) | |
tree | 1afebe2a12700e7789c0a4156cf930f21618444c | |
parent | 07e47c4b4436a8ab9414d64894ccada36c8d124a (diff) | |
download | bugzilla-95e71eea95c977eb7512156be813ede7eb161600.tar.gz bugzilla-95e71eea95c977eb7512156be813ede7eb161600.tar.xz |
Bug 1168357: Unable to reset mentor in modal bug view
-rw-r--r-- | extensions/BugModal/template/en/default/bug_modal/field.html.tmpl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/extensions/BugModal/template/en/default/bug_modal/field.html.tmpl b/extensions/BugModal/template/en/default/bug_modal/field.html.tmpl index 8317a059f..12f412870 100644 --- a/extensions/BugModal/template/en/default/bug_modal/field.html.tmpl +++ b/extensions/BugModal/template/en/default/bug_modal/field.html.tmpl @@ -191,6 +191,7 @@ END; [% CASE constants.FIELD_TYPE_USER %] [%# single user %] + <input type="hidden" name="defined_[% name FILTER html %]" value="[% value FILTER html %]"> [% INCLUDE global/userselect.html.tmpl id = name name = name @@ -200,6 +201,7 @@ END; [% CASE constants.FIELD_TYPE_USERS %] [%# multiple users %] + <input type="hidden" name="defined_[% name FILTER html %]" value="[% value.join(", ") FILTER html %]"> [% INCLUDE global/userselect.html.tmpl id = name name = name |