Ticket #36334: 36334.2.patch
File 36334.2.patch, 654 bytes (added by , 8 years ago) |
---|
-
src/wp-includes/feed.php
639 639 $types = array( 640 640 'rss' => 'application/rss+xml', 641 641 'rss2' => 'application/rss+xml', 642 'rss-http' => 'text/xml',643 642 'atom' => 'application/atom+xml', 644 643 'rdf' => 'application/rdf+xml' 645 644 ); 646 645 647 $content_type = ( !empty($types[$type]) ) ? $types[$type] : ' application/octet-stream';646 $content_type = ( !empty($types[$type]) ) ? $types[$type] : 'text/xml'; 648 647 649 648 /** 650 649 * Filters the content type for a specific feed type.