diff options
Diffstat (limited to 'modules/aggregator/aggregator.pages.inc')
-rw-r--r-- | modules/aggregator/aggregator.pages.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/aggregator/aggregator.pages.inc b/modules/aggregator/aggregator.pages.inc index aba8bf528..7a816a59f 100644 --- a/modules/aggregator/aggregator.pages.inc +++ b/modules/aggregator/aggregator.pages.inc @@ -435,7 +435,7 @@ function theme_aggregator_page_opml($feeds) { $output .= "<opml version=\"1.1\">\n"; $output .= "<head>\n"; $output .= '<title>' . check_plain(variable_get('site_name', 'Drupal')) . "</title>\n"; - $output .= '<dateModified>' . gmdate('r') . "</dateModified>\n"; + $output .= '<dateModified>' . gmdate(DATE_RFC2822, REQUEST_TIME) . "</dateModified>\n"; $output .= "</head>\n"; $output .= "<body>\n"; foreach ($feeds as $feed) { |