diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 759143c3f7522ce85c715fecadd5d99e78f5b4eb..7fc6f6c8203be9d4e4ab210e497f978e61f6eedf 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 c06f8830bb561d2743d639605ffc671b6539bdb4..1b3051a936331186d2ab760ffd7343bdf637d941 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;