diff options
author | bbaetz%student.usyd.edu.au <> | 2002-08-27 18:35:05 +0200 |
---|---|---|
committer | bbaetz%student.usyd.edu.au <> | 2002-08-27 18:35:05 +0200 |
commit | 26f9cef39015907b9347bbdbd07c0bb35edb988e (patch) | |
tree | c7b352071c25ac838ab1ec316a06bf3404965663 /template/en/default/global | |
parent | f5c9d40bc27590493fed124fc8037c24fdd08d73 (diff) | |
download | bugzilla-26f9cef39015907b9347bbdbd07c0bb35edb988e.tar.gz bugzilla-26f9cef39015907b9347bbdbd07c0bb35edb988e.tar.xz |
Bug 161203 - Bug changes with intermediate pages munges fields with
multiple values (e.g., CC)
patch by "Randall M! Gee", r=bbaetz, myk
Diffstat (limited to 'template/en/default/global')
-rw-r--r-- | template/en/default/global/hidden-fields.html.tmpl | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/template/en/default/global/hidden-fields.html.tmpl b/template/en/default/global/hidden-fields.html.tmpl index e622e7b90..f968fab20 100644 --- a/template/en/default/global/hidden-fields.html.tmpl +++ b/template/en/default/global/hidden-fields.html.tmpl @@ -21,6 +21,8 @@ [%# INTERFACE: # form: hash; the form fields/values for which to generate hidden fields. + # mform: hash; the form fields/values with multiple values for which to + # generate hidden fields. # exclude: string; a regular expression matching fields to exclude # from the list of hidden fields generated by this template #%] @@ -28,6 +30,13 @@ [%# Generate hidden form fields for non-excluded fields. %] [% FOREACH field = form %] [% NEXT IF exclude && field.key.search(exclude) %] - <input type="hidden" name="[% field.key %]" - value="[% field.value | html | html_linebreak %]"> + [% IF mform.${field.key}.size > 1 %] + [% FOREACH mvalue = mform.${field.key} %] + <input type="hidden" name="[% field.key %]" + value="[% mvalue | html | html_linebreak %]"> + [% END %] + [% ELSE %] + <input type="hidden" name="[% field.key %]" + value="[% field.value | html | html_linebreak %]"> + [% END %] [% END %] |