This and other tutorials saved me a lot of time while migrating Forums. Thank you! Just one patch for the code above.
Attribute $node->date must be set before node_submit(): $node->date = format_date($node->created, 'custom', 'Y-m-d H:i:s O');
Otherwise $node->created is set to REQUEST_TIME. http://api.drupal.org/api/drupal/modules--node--node.module/function/nod...
Problem with node_submit($node); when $node->date is not set.
This and other tutorials saved me a lot of time while migrating Forums. Thank you! Just one patch for the code above.
Attribute $node->date must be set before node_submit():
$node->date = format_date($node->created, 'custom', 'Y-m-d H:i:s O');Otherwise $node->created is set to REQUEST_TIME.
http://api.drupal.org/api/drupal/modules--node--node.module/function/nod...
Thanks once again!