Changeset 10758
- Timestamp:
- 03/10/2009 06:25:04 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/feed.php
r10688 r10758 337 337 foreach ( $cat_names as $cat_name ) { 338 338 if ( 'rdf' == $type ) 339 $the_list .= "\ n\t\t<dc:subject><![CDATA[$cat_name]]></dc:subject>\n";339 $the_list .= "\t\t<dc:subject><![CDATA[$cat_name]]></dc:subject>\n"; 340 340 elseif ( 'atom' == $type ) 341 341 $the_list .= sprintf( '<category scheme="%1$s" term="%2$s" />', attribute_escape( apply_filters( 'get_bloginfo_rss', get_bloginfo( 'url' ) ) ), attribute_escape( $cat_name ) ); 342 342 else 343 $the_list .= "\ n\t\t<category><![CDATA[" . html_entity_decode( $cat_name, ENT_COMPAT, get_option('blog_charset') ) . "]]></category>\n";343 $the_list .= "\t\t<category><![CDATA[" . html_entity_decode( $cat_name, ENT_COMPAT, get_option('blog_charset') ) . "]]></category>\n"; 344 344 } 345 345
Note: See TracChangeset
for help on using the changeset viewer.