diff options
author | lpsolit%gmail.com <> | 2005-04-07 14:44:52 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-04-07 14:44:52 +0000 |
commit | 3ebb95e430282a409ab8f4491c85cb60e6ca7085 (patch) | |
tree | e5793a51aed012059391eb81012fe3538dabf5b1 /template | |
parent | Bug 284909 - fix consulting link. Patch by gerv; r=vladd, a=justdave. (diff) | |
download | bugzilla-3ebb95e430282a409ab8f4491c85cb60e6ca7085.tar.gz bugzilla-3ebb95e430282a409ab8f4491c85cb60e6ca7085.tar.bz2 bugzilla-3ebb95e430282a409ab8f4491c85cb60e6ca7085.zip |
Bug 284301: error when entering less than three caracters in the CC field - Patch by byron jones (glob) <bugzilla@glob.com.au> r=wurblzap a=justdave
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/global/hidden-fields.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/global/hidden-fields.html.tmpl b/template/en/default/global/hidden-fields.html.tmpl index 2fa577b43..ef083d9ec 100644 --- a/template/en/default/global/hidden-fields.html.tmpl +++ b/template/en/default/global/hidden-fields.html.tmpl @@ -30,7 +30,7 @@ [%# Generate hidden form fields for non-excluded fields. %] [% FOREACH field = form %] [% NEXT IF exclude && field.key.search(exclude) %] - [% IF mform.${field.key}.size > 1 %] + [% IF mform.${field.key} && mform.${field.key}.size > 1 %] [% FOREACH mvalue = mform.${field.key} %] <input type="hidden" name="[% field.key FILTER html %]" value="[% mvalue FILTER html FILTER html_linebreak %]"> |