diff options
Diffstat (limited to 'include/import.php')
-rw-r--r-- | include/import.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/import.php b/include/import.php index ea324ccb5..42fa2f247 100644 --- a/include/import.php +++ b/include/import.php @@ -734,7 +734,7 @@ function import_items($channel, $items, $sync = false, $relocate = null) { // flags may have changed and we are probably relocating the post, // so force an update even if we have the same timestamp - if($item['edited'] > $r[0]['edited']) { + if($item['edited'] >= $r[0]['edited']) { $item['id'] = $r[0]['id']; $item['uid'] = $channel['channel_id']; $item_result = item_store_update($item,$allow_code,$deliver); |