From 5a6d3e6e5dd08e7e6c8229a18f422ef4894ae335 Mon Sep 17 00:00:00 2001 From: Alex Barth <alex_b@53995.no-reply.drupal.org> Date: Sun, 16 May 2010 21:24:50 +0000 Subject: [PATCH] #774858 rjbrown99: Fix Node Processor updates node "created" time when updating. --- CHANGELOG.txt | 2 ++ plugins/FeedsNodeProcessor.inc | 12 ++++++------ 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 759143c3..7fc6f6c8 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -3,6 +3,8 @@ Feeds 6.x 1.0 xxxxxxxxxxxxxxxxxxxx ---------------------------------- +- #774858 rjbrown99: Fix Node Processor updates node "created" time when + updating. - #704236 jerdavis: Support mapping to CCK float field. - #783820 klonos: Fix warning: copy() [function.copy]: Filename cannot be empty in FeedsParser.inc on line 168. diff --git a/plugins/FeedsNodeProcessor.inc b/plugins/FeedsNodeProcessor.inc index c06f8830..1b3051a9 100644 --- a/plugins/FeedsNodeProcessor.inc +++ b/plugins/FeedsNodeProcessor.inc @@ -30,22 +30,22 @@ class FeedsNodeProcessor extends FeedsProcessor { $node = new stdClass(); $hash = $this->hash($item); + // If updating check whether item actually has changed and if so, + // retrieve its nid and vid. if (!empty($nid)) { - - // If hash of this item is same as existing hash there is no actual - // change, skip. if ($hash == $this->getHash($nid)) { continue; } - - // If updating populate nid and vid avoiding an expensive node_load(). $node->nid = $nid; $node->vid = db_result(db_query("SELECT vid FROM {node} WHERE nid = %d", $nid)); } + else { + $node->created = FEEDS_REQUEST_TIME; + } // Populate and prepare node object. $node->type = $this->config['content_type']; - $node->created = FEEDS_REQUEST_TIME; + $node->changed = FEEDS_REQUEST_TIME; $node->feeds_node_item = new stdClass(); $node->feeds_node_item->hash = $hash; $node->feeds_node_item->id = $this->id; -- GitLab