Feed escaping fixes to other feeds - http://mosquito.wordpress.org/view.php?id=720
git-svn-id: https://develop.svn.wordpress.org/trunk@2131 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
faf0cae6a3
commit
d24a38306a
@ -32,7 +32,7 @@ $more = 1;
|
||||
<modified><?php the_time('Y-m-d\TH:i:s\Z'); ?></modified>
|
||||
<issued> <?php the_time('Y-m-d\TH:i:s\Z'); ?></issued>
|
||||
<?php the_category_rss('rdf') ?>
|
||||
<summary type="text/html" mode="escaped"><?php the_excerpt_rss(); ?></summary>
|
||||
<summary type="text/html" mode="escaped"><![CDATA[<?php the_excerpt_rss(); ?>]]></summary>
|
||||
<?php if (!get_settings('rss_use_excerpt')) : ?>
|
||||
<?php if ( strlen( $post->post_content ) ) : ?>
|
||||
<content type="text/html" mode="escaped" xml:base="<?php permalink_single_rss() ?>"><![CDATA[<?php the_content('', 0, '') ?>]]></content>
|
||||
|
@ -26,7 +26,7 @@ $more = 1;
|
||||
<?php
|
||||
if (get_settings('rss_use_excerpt')) {
|
||||
?>
|
||||
<description><?php the_excerpt_rss() ?></description>
|
||||
<description><![CDATA[<?php the_excerpt_rss() ?>]]></description>
|
||||
<?php
|
||||
} else { // use content
|
||||
?>
|
||||
|
Loading…
Reference in New Issue
Block a user