I've added these lines of code, to use publication date in RSS items, instead of created time;

function publication_date_nodeapi(&$node, $op, $a3 = NULL, $a4 = NULL) {
  // (...)
			case 'rss item':
				if (!empty($node->published_at)) {
					// default, drupal uses 'created' as publication date
					// overwrite created with publication date
					$node->created = $node->published_at;
				}
				break;
	  }
}

Comments

jstoller’s picture

Version: 6.x-1.1 » 6.x-1.x-dev
Issue summary: View changes
Status: Active » Closed (won't fix)

Cleaning up the issue queue.

This looks like something that belongs in a custom module, or in the theme layer. I wouldn't wouldn't want to overwrite the created date for all users in this way.