Hi,

Jut downloaded the latest drush version and found a minor bugs in the module.

In node_export.module / node_export_import there should be a:

        return TRUE;

behind the 2nd

        if ($redirect) {
..
}

statement so it becomes:

        if ($redirect) {
          drupal_goto('node/'. $new_nid .'/edit');
        }          drupal_goto('node/'. $new_nid .'/edit');
        return TRUE;

In the current situation as single node is imported but there is always an error shown in drush.

Comments

danielb’s picture

Status: Active » Fixed

Thanks I have committed this!

Status: Fixed » Closed (fixed)

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