Closed (fixed)
Project:
Node export
Version:
6.x-2.21
Component:
Node Export
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
1 Nov 2010 at 12:02 UTC
Updated:
16 Nov 2010 at 00:20 UTC
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
Comment #1
danielb commentedThanks I have committed this!