MDL-12563 Fixed RSS dates so that they are always GMT

This commit is contained in:
moodler 2008-09-16 08:58:17 +00:00
parent 32579e3d1c
commit 1e1e2438c6

View file

@ -220,7 +220,7 @@ function rss_add_items($items) {
$result .= rss_full_tag('title',3,false,strip_tags($item->title));
$result .= rss_full_tag('link',3,false,$item->link);
$result .= rss_add_enclosures($item);
$result .= rss_full_tag('pubDate',3,false,date('D, d M Y H:i:s T',$item->pubdate));
$result .= rss_full_tag('pubDate',3,false,gmdate('D, d M Y H:i:s',$item->pubdate).' GMT'); # MDL-12563
//Include the author if exists
if (isset($item->author)) {
//$result .= rss_full_tag('author',3,false,$item->author);