Changeset 11358
- Timestamp:
- 05/16/2009 05:15:21 AM (15 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/feed-rss.php
r10952 r11358 6 6 */ 7 7 8 header('Content-Type: ' . feed_content_type('rss ') . '; charset=' . get_option('blog_charset'), true);8 header('Content-Type: ' . feed_content_type('rss-http') . '; charset=' . get_option('blog_charset'), true); 9 9 $more = 1; 10 10 -
trunk/wp-includes/feed-rss2-comments.php
r11323 r11358 6 6 */ 7 7 8 header('Content-Type: ' . feed_content_type('rss 2') . '; charset=' . get_option('blog_charset'), true);8 header('Content-Type: ' . feed_content_type('rss-http') . '; charset=' . get_option('blog_charset'), true); 9 9 10 10 echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; -
trunk/wp-includes/feed-rss2.php
r11272 r11358 6 6 */ 7 7 8 header('Content-Type: ' . feed_content_type('rss 2') . '; charset=' . get_option('blog_charset'), true);8 header('Content-Type: ' . feed_content_type('rss-http') . '; charset=' . get_option('blog_charset'), true); 9 9 $more = 1; 10 10 -
trunk/wp-includes/feed.php
r11334 r11358 524 524 525 525 $types = array( 526 'rss' => 'text/xml', 527 'rss2' => 'text/xml', 526 'rss' => 'application/rss+xml', 527 'rss2' => 'application/rss+xml', 528 'rss-http' => 'text/xml', 528 529 'atom' => 'application/atom+xml', 529 'rdf' => 'application/rdf+xml' ,530 'rdf' => 'application/rdf+xml' 530 531 ); 531 532
Note: See TracChangeset
for help on using the changeset viewer.