I had a similar desire and couldn’t find it on the web so I spent some time and hacked it. This seems to work. Go to your WP plugins folder for Reblog and open the Refeed plugin. Towards the bottom of the document you will find this code:
$q = sprintf(“INSERT INTO {$GLOBALS['tableposts']}
(post_author, post_date, post_date_gmt, post_content, post_title, post_excerpt, post_name, post_modified, post_modified_gmt)
VALUES (‘%s’, ‘%s’, ‘%s’, ‘%s’, ‘%s’, ‘%s’, ‘%s’, ‘%s’, ‘%s’)”,
1, // pick an author, any author
date(‘Y-m-d H:i:s’, parse_w3cdtf($item[‘dc’][‘date’])),
gmdate(‘Y-m-d H:i:s’, parse_w3cdtf($item[‘dc’][‘date’])),
mysql_real_escape_string(format_to_post(balanceTags($post_content))),
mysql_real_escape_string($item[‘title’]),
mysql_real_escape_string(format_to_post(balanceTags($item[‘summary’]))),
mysql_real_escape_string($item[‘title’]),
date(‘Y-m-d H:i:s’, parse_w3cdtf($item[‘dc’][‘date’])),
gmdate(‘Y-m-d H:i:s’, parse_w3cdtf($item[‘dc’][‘date’])));
Change it to this code:
$q = sprintf(“INSERT INTO {$GLOBALS['tableposts']}
(post_author, post_date, post_date_gmt, post_content, post_title, post_excerpt, post_name, post_modified, post_modified_gmt)
VALUES (‘%s’, ‘%s’, ‘%s’, ‘%s’, ‘%s’, ‘%s’, ‘%s’, ‘%s’, ‘%s’)”,
1, // pick an author, any author
date(‘Y-m-d H:i:s’, intval($item[‘rb’][‘source_published_date’])), //date(‘Y-m-d H:i:s’,intval($item[‘rb’][‘source_published_date’]) – parse_w3cdtf($item[‘dc’][‘date’])
gmdate(‘Y-m-d H:i:s’, intval($item[‘rb’][‘source_published_date’])),
mysql_real_escape_string(format_to_post(balanceTags($post_content))),
mysql_real_escape_string($item[‘title’]),
mysql_real_escape_string(format_to_post(balanceTags($item[‘summary’]))),
mysql_real_escape_string($item[‘title’]),
date(‘Y-m-d H:i:s’, intval($item[‘rb’][‘source_published_date’])),
gmdate(‘Y-m-d H:i:s’, intval($item[‘rb’][‘source_published_date’])));