Ticket #15110: 15510.patch
File 15510.patch, 1.6 KB (added by , 10 years ago) |
---|
-
wp-includes/feed-rss.php
5 5 * @package WordPress 6 6 */ 7 7 8 header('Content-Type: ' . feed_content_type('rss -http') . '; charset=' . get_option('blog_charset'), true);8 header('Content-Type: ' . feed_content_type('rss') . '; charset=' . get_option('blog_charset'), true); 9 9 $more = 1; 10 10 11 11 echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; ?> -
wp-includes/feed-rss2-comments.php
5 5 * @package WordPress 6 6 */ 7 7 8 header('Content-Type: ' . feed_content_type('rss -http') . '; charset=' . get_option('blog_charset'), true);8 header('Content-Type: ' . feed_content_type('rss2') . '; charset=' . get_option('blog_charset'), true); 9 9 10 10 echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; 11 11 -
wp-includes/feed-rss2.php
5 5 * @package WordPress 6 6 */ 7 7 8 header('Content-Type: ' . feed_content_type('rss -http') . '; charset=' . get_option('blog_charset'), true);8 header('Content-Type: ' . feed_content_type('rss2') . '; charset=' . get_option('blog_charset'), true); 9 9 $more = 1; 10 10 11 11 echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>';