Error in modules/content_migrate/modules/content_migrate.filefield.inc
Fixed on my side but thought I'd post so it gets pushed up. On Windows right now or I would upload a quick patch.

Lines 131 and 133 are missing closing brackets:

if (isset($record[$field['field_name'] . '_list')) {
        $record[$field['field_name'] . '_display'] = $record[$field['field_name'] . '_list'];
        unset($record[$field['field_name'] . '_list');
      }

should be:

      if (isset($record[$field['field_name'] . '_list'])) {
        $record[$field['field_name'] . '_display'] = $record[$field['field_name'] . '_list'];
        unset($record[$field['field_name'] . '_list']);
      }

Comments

karens’s picture

Status: Active » Fixed

Quite right. I just committed a fix. Thanks!

jhonandi100’s picture

good work

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.