From 3ebb95e430282a409ab8f4491c85cb60e6ca7085 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Thu, 7 Apr 2005 14:44:52 +0000 Subject: [PATCH] Bug 284301: error when entering less than three caracters in the CC field - Patch by byron jones (glob) r=wurblzap a=justdave --- template/en/default/global/hidden-fields.html.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/en/default/global/hidden-fields.html.tmpl b/template/en/default/global/hidden-fields.html.tmpl index 2fa577b436..ef083d9ece 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} %] -- 2.47.2