Ticket #108: 108.diff
File 108.diff, 2.6 KB (added by , 16 years ago) |
---|
-
Users/denis/Sites/sem-pro/wp-includes/feed-rss2.php
8 8 header('Content-Type: ' . feed_content_type('rss2') . '; charset=' . get_option('blog_charset'), true); 9 9 $more = 1; 10 10 11 ?> 12 <?php echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; ?> 11 echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; ?> 13 12 14 13 <rss version="2.0" 15 14 xmlns:content="http://purl.org/rss/1.0/modules/content/" -
Users/denis/Sites/sem-pro/wp-includes/feed-atom.php
8 8 header('Content-Type: ' . feed_content_type('atom') . '; charset=' . get_option('blog_charset'), true); 9 9 $more = 1; 10 10 11 ?> 12 <?php echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; ?> 11 echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; ?> 13 12 <feed 14 13 xmlns="http://www.w3.org/2005/Atom" 15 14 xmlns:thr="http://purl.org/syndication/thread/1.0" -
Users/denis/Sites/sem-pro/wp-includes/feed-rss.php
8 8 header('Content-Type: ' . feed_content_type('rss') . '; charset=' . get_option('blog_charset'), true); 9 9 $more = 1; 10 10 11 ?> 12 <?php echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; ?> 11 echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; ?> 13 12 <?php the_generator( 'comment' ); ?> 14 13 <rss version="0.92"> 15 14 <channel> -
Users/denis/Sites/sem-pro/wp-includes/feed-rdf.php
8 8 header('Content-Type: ' . feed_content_type('rdf') . '; charset=' . get_option('blog_charset'), true); 9 9 $more = 1; 10 10 11 ?> 12 <?php echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; ?> 11 echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; ?> 13 12 <rdf:RDF 14 13 xmlns="http://purl.org/rss/1.0/" 15 14 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"