Changeset 2118
- Timestamp:
- 01/22/05 03:45:35 (4 years ago)
- Files:
-
- trunk/wp-includes/template-functions-links.php (modified) (2 diffs)
- trunk/wp-rss2.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-includes/template-functions-links.php
r2094 r2118 188 188 $output = $feed_url .'/wp-commentsrss2.php'; 189 189 if ($do_perma) { 190 $output = $comment_feed_url . '/ rss2/';190 $output = $comment_feed_url . '/'; 191 191 } 192 192 break; … … 195 195 $output = $feed_url .'/wp-rss2.php'; 196 196 if ($do_perma) { 197 $output = $feed_url . '/ rss2/';197 $output = $feed_url . '/'; 198 198 } 199 199 break; trunk/wp-rss2.php
r2070 r2118 36 36 <guid><?php the_permalink($id); ?></guid> 37 37 <?php if (get_settings('rss_use_excerpt')) : ?> 38 <description>< ?php the_excerpt_rss() ?></description>38 <description><![CDATA[<?php the_excerpt_rss() ?>]]></description> 39 39 <?php else : ?> 40 <description>< ?php the_excerpt_rss() ?></description>40 <description><![CDATA[<?php the_excerpt_rss() ?>]]></description> 41 41 <?php if ( strlen( $post->post_content ) > 0 ) : ?> 42 42 <content:encoded><![CDATA[<?php the_content('', 0, '') ?>]]></content:encoded>
