Index: trunk/extensions/SemanticForms/includes/SF_FormClasses.inc |
— | — | @@ -244,7 +244,7 @@ |
245 | 245 | return $f; |
246 | 246 | } |
247 | 247 | |
248 | | - function createFromDefinition($field_name, $input_name, $is_mandatory, $is_hidden, $is_disabled, $input_type, $field_args, $all_fields, $strict_parsing) { |
| 248 | + function createFromDefinition($field_name, $input_name, $is_mandatory, $is_hidden, $is_disabled, $is_list, $input_type, $field_args, $all_fields, $strict_parsing) { |
249 | 249 | // see if this field matches one of the fields defined for this template - |
250 | 250 | // if it is, use all available information about that field; if it's not, |
251 | 251 | // either include it in the form or not, depending on whether the |
— | — | @@ -272,6 +272,7 @@ |
273 | 273 | $f->field_args = $field_args; |
274 | 274 | $f->input_name = $input_name; |
275 | 275 | $f->is_disabled = $is_disabled; |
| 276 | + $f->is_list = $is_list; |
276 | 277 | return $f; |
277 | 278 | } |
278 | 279 | |