for those using php 5.3 it's node_import.inc needs this patch at the line 1840

function node_import_drupal_execute($form_id, &$form_state) {
$args = func_get_args();
$form = call_user_func_array('drupal_retrieve_form', $args);

must be patched like this:

function node_import_drupal_execute($form_id, &$form_state) {
$args = func_get_args();
$args[1] = &$form_state;
$form = call_user_func_array('drupal_retrieve_form', $args);

Comments

Tresler’s picture

Status: Active » Fixed

This appears to be included in the version I am using 6.x-1.1

Status: Fixed » Closed (fixed)

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