Ticket #1790: 1790.diff
| File 1790.diff, 2.1 KB (added by , 19 years ago) |
|---|
-
wp-includes/feed-rss2.php
14 14 > 15 15 16 16 <channel> 17 <title><?php bloginfo_rss('name'); ?></title>17 <title><?php wp_title_rss(); ?></title> 18 18 <link><?php bloginfo_rss('url') ?></link> 19 19 <description><?php bloginfo_rss("description") ?></description> 20 20 <pubDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_lastpostmodified('GMT'), false); ?></pubDate> -
wp-includes/feed-atom.php
11 11 xml:base="<?php bloginfo_rss('home') ?>/wp-atom.php" 12 12 <?php do_action('atom_ns'); ?> 13 13 > 14 <title type="text"><?php bloginfo_rss('name')?></title>14 <title type="text"><?php wp_title_rss(); ?></title> 15 15 <subtitle type="text"><?php bloginfo_rss("description") ?></subtitle> 16 16 17 17 <updated><?php echo mysql2date('Y-m-d\TH:i:s\Z', get_lastpostmodified('GMT')); ?></updated> -
wp-includes/feed.php
16 16 return $title; 17 17 } 18 18 19 function wp_title_rss($sep = '»') { 20 echo apply_filters('wp_title_rss', get_wp_title_rss($sep)); 21 } 22 19 23 function get_the_title_rss() { 20 24 $title = get_the_title(); 21 25 $title = apply_filters('the_title', $title); -
wp-includes/feed-rss.php
7 7 <!-- generator="wordpress/<?php echo $wp_version ?>" --> 8 8 <rss version="0.92"> 9 9 <channel> 10 <title><?php bloginfo_rss('name')?></title>10 <title><?php wp_title_rss(); ?></title> 11 11 <link><?php bloginfo_rss('url') ?></link> 12 12 <description><?php bloginfo_rss('description') ?></description> 13 13 <lastBuildDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_lastpostmodified('GMT'), false); ?></lastBuildDate>