diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-01-14 22:30:09 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-01-14 22:30:09 +0000 |
commit | 6fc2070a22cda40d174db205847dca4c214eeea6 (patch) | |
tree | 84a96893aaea2ff4dad96404acf7b12e6fabfb1d /modules/aggregator | |
parent | 01e9b5a0f01e88e3c804cdef64676eebed56520b (diff) | |
download | brdo-6fc2070a22cda40d174db205847dca4c214eeea6.tar.gz brdo-6fc2070a22cda40d174db205847dca4c214eeea6.tar.bz2 |
Patch 5114 by Kjartan:
- Adds drupal_set_header() and drupal_get_headers().
- Cache now stores custom headers.
- Replace theme_head() with drupal_get_html_head(), added drupal_set_html_head().
- Added RSS autodiscover links to node, blog and taxonomy pages.
Diffstat (limited to 'modules/aggregator')
-rw-r--r-- | modules/aggregator/aggregator.module | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module index e7c807961..da9ecb4da 100644 --- a/modules/aggregator/aggregator.module +++ b/modules/aggregator/aggregator.module @@ -729,8 +729,7 @@ function aggregator_page_opml() { $output .= "</body>\n"; $output .= "</opml>\n"; - header("Content-Type: text/xml"); - + drupal_set_header("Content-Type: text/xml; charset=utf-8"); print $output; } |