Changeset 5132
- Timestamp:
- 03/29/2007 01:29:09 AM (18 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/feed-atom.php
r4953 r5132 12 12 <?php do_action('atom_ns'); ?> 13 13 > 14 <title type="text"><?php bloginfo_rss('name') ?></title>14 <title type="text"><?php bloginfo_rss('name'); wp_title_rss(); ?></title> 15 15 <subtitle type="text"><?php bloginfo_rss("description") ?></subtitle> 16 16 -
trunk/wp-includes/feed-rdf.php
r4927 r5132 16 16 > 17 17 <channel rdf:about="<?php bloginfo_rss("url") ?>"> 18 <title><?php bloginfo_rss('name') ?></title>18 <title><?php bloginfo_rss('name'); wp_title_rss(); ?></title> 19 19 <link><?php bloginfo_rss('url') ?></link> 20 20 <description><?php bloginfo_rss('description') ?></description> -
trunk/wp-includes/feed-rss.php
r4927 r5132 8 8 <rss version="0.92"> 9 9 <channel> 10 <title><?php bloginfo _rss('name')?></title>10 <title><?php bloginfo('name'); wp_title_rss(); ?></title> 11 11 <link><?php bloginfo_rss('url') ?></link> 12 12 <description><?php bloginfo_rss('description') ?></description> -
trunk/wp-includes/feed-rss2.php
r4927 r5132 15 15 16 16 <channel> 17 <title><?php bloginfo_rss('name'); ?></title>17 <title><?php bloginfo_rss('name'); wp_title_rss(); ?></title> 18 18 <link><?php bloginfo_rss('url') ?></link> 19 19 <description><?php bloginfo_rss("description") ?></description> -
trunk/wp-includes/feed.php
r5087 r5132 15 15 $title = apply_filters('get_wp_title_rss', $title); 16 16 return $title; 17 } 18 19 function wp_title_rss($sep = '»') { 20 echo apply_filters('wp_title_rss', get_wp_title_rss($sep)); 17 21 } 18 22 -
trunk/wp-includes/general-template.php
r5106 r5132 166 166 $author_name = get_query_var('author_name'); 167 167 $m = get_query_var('m'); 168 print '<!-- $m = ' . $m . ' -->'; 168 169 $year = get_query_var('year'); 169 170 $monthnum = get_query_var('monthnum');
Note: See TracChangeset
for help on using the changeset viewer.