Changeset 45316
- Timestamp:
- 05/12/08 00:15:08 (2 months ago)
- Files:
-
- organize-series/trunk/orgSeries-rss.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
organize-series/trunk/orgSeries-rss.php
r42745 r45316 38 38 $the_list .= "\n\t\t<series:name><![CDATA[$series_name]]></series:name>\n"; 39 39 elseif ( 'atom' == $type ) 40 $the_list .= sprintf( '<series scheme="%1$s" term="%2$s" />' , attribute_escape( apply_filters( 'get_bloginfo_rss', get_bloginfo( 'url' ) ) ), attribute_escape( $series_name ) );40 $the_list .= sprintf( '<series:name scheme="%1$s" term="%2$s" />' , attribute_escape( apply_filters( 'get_bloginfo_rss', get_bloginfo( 'url' ) ) ), attribute_escape( $series_name ) ); 41 41 else 42 42 $the_list .= "\n\t\t<series:name><![CDATA[$series_name]]></series:name>\n"; … … 51 51 } 52 52 53 function the_series_atom( $type = 'atom') {54 echo get_the_series_ atom($type);53 function the_series_atom() { 54 echo get_the_series_rss('atom'); 55 55 } 56 56
