while debugging module node_export the value of variable "delivery" (function node_export_gui) was checked

  $delivery = $delivery ? $delivery : variable_get('node_export_code', 'all');

and yields in (output of print_r)
Array ( [vid] => 18 [exposed_input] => Array ( [title] => [type] => biblio [promote] => All [status] => All [sticky] ...
That looks like the list of arguments as filled in by function node_export_bulk_operation.
Is that what is expected?

When setting the variable to '' (empty) I get valid export files.

Comments

danielb’s picture

Possibly change the function node_export_node_operations() to add an extra parameter
around line 217 and 227 of node_export.module

            'callback arguments' => array($format_handler, NULL),

and

          'callback arguments' => array(NULL, NULL),

?

danielb’s picture

Status: Active » Fixed

In the interest of moving forward with this issue, I have made the suggested change to the repository. I suspect this issue only applies to Drupal 6.

Status: Fixed » Closed (fixed)

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