diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-10-31 14:58:41 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-10-31 14:58:41 +0000 |
commit | 150f6a682b67e046be445ab85218748fc73d2657 (patch) | |
tree | 7426050b42c53a751a82f81a8405bcdd2d010b5f | |
parent | 086d1890113cf4c33775c42bee34b960c9fa098a (diff) | |
download | brdo-150f6a682b67e046be445ab85218748fc73d2657.tar.gz brdo-150f6a682b67e046be445ab85218748fc73d2657.tar.bz2 |
#619406 by yched: Removed unneeded variable assignment in field_multiple_value_form().
-rw-r--r-- | modules/field/field.form.inc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/field/field.form.inc b/modules/field/field.form.inc index 1f4c6a94f..20dd63a78 100644 --- a/modules/field/field.form.inc +++ b/modules/field/field.form.inc @@ -119,7 +119,6 @@ function field_default_form($obj_type, $object, $field, $instance, $langcode, $i * - drag-n-drop value reordering */ function field_multiple_value_form($field, $instance, $langcode, $items, &$form, &$form_state) { - $field = field_info_field($instance['field_name']); $field_name = $field['field_name']; switch ($field['cardinality']) { |