Skip to content
Snippets Groups Projects
Commit aa512439 authored by Gábor Hojtsy's avatar Gábor Hojtsy
Browse files

#212864 suggestion by pp, patch by gdevlugt: use format_date() for RSS item...

#212864 suggestion by pp, patch by gdevlugt: use format_date() for RSS item dates instead of date() to honor site time zone settings
parent 9f99a903
No related branches found
No related tags found
No related merge requests found
...@@ -1664,7 +1664,7 @@ function node_feed($nids = FALSE, $channel = array()) { ...@@ -1664,7 +1664,7 @@ function node_feed($nids = FALSE, $channel = array()) {
// Allow modules to add additional item fields and/or modify $item // Allow modules to add additional item fields and/or modify $item
$extra = node_invoke_nodeapi($item, 'rss item'); $extra = node_invoke_nodeapi($item, 'rss item');
$extra = array_merge($extra, array(array('key' => 'pubDate', 'value' => date('r', $item->created)), array('key' => 'dc:creator', 'value' => $item->name), array('key' => 'guid', 'value' => $item->nid .' at '. $base_url, 'attributes' => array('isPermaLink' => 'false')))); $extra = array_merge($extra, array(array('key' => 'pubDate', 'value' => format_date($item->created, 'custom', 'r')), array('key' => 'dc:creator', 'value' => $item->name), array('key' => 'guid', 'value' => $item->nid .' at '. $base_url, 'attributes' => array('isPermaLink' => 'false'))));
foreach ($extra as $element) { foreach ($extra as $element) {
if (isset($element['namespace'])) { if (isset($element['namespace'])) {
$namespaces = array_merge($namespaces, $element['namespace']); $namespaces = array_merge($namespaces, $element['namespace']);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment