In the configuration you can say to keep the timestamp of the revision, but the code does nothing with it.

In node_export.module we see on line 593
$node->timestamp = time();

Comments

ericjvandervelden’s picture

I have changed line 593 in node_export.module in the drupal 6 version to:

if(empty($node->revision_timestamp))
$node->timestamp = time();
else
$node->timestamp=$node->revision_timestamp;

I thinks it is OK, because revision_timestamp is a node_load thing, and now we are going to save.

danielb’s picture

Issue summary: View changes
Status: Active » Closed (outdated)