Closed (fixed)
Project:
Node import
Version:
6.x-1.0-rc4
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
4 Jan 2011 at 12:23 UTC
Updated:
5 Dec 2011 at 17:20 UTC
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
Comment #1
Tresler commentedThis appears to be included in the version I am using 6.x-1.1