Changes between Initial Version and Version 1 of Ticket #3884
- Timestamp:
- 02/27/2007 05:40:14 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3884
-
Property
Milestone
changed from
to
2.2
-
Property
Summary
changed from
the_content_rss() is used correctly in wp-rdf.php, wp-rss2.php and wp-atom.php
tothe_content_rss() is used incorrectly in wp-rdf.php, wp-rss2.php and wp-atom.php
-
Property
Milestone
changed from
-
Ticket #3884 – Description
initial v1 4 4 5 5 {{{ 6 <content:encoded><![CDATA[<?php the_content_rss('', 0, '',, 2) ?>]]></content:encoded> 6 <content:encoded> 7 <![CDATA[<?php the_content_rss('', 0, '',, 2) ?>]]> 8 </content:encoded> 7 9 }}} 8 10 … … 10 12 11 13 {{{ 12 <content type="<?php bloginfo('html_type'); ?>" mode="escaped" xml:base="<?php permalink_single_rss() ?>"><![CDATA[<?php the_content_rss('', 0, '',, 2) ?>]]></content> 14 <content type="<?php bloginfo('html_type'); ?>" mode="escaped" 15 xml:base="<?php permalink_single_rss() ?>"> 16 <![CDATA[<?php the_content_rss('', 0, '',, 2) ?>]]> 17 </content> 13 18 }}} 14 19 15 20 Line 52 in wp-rdf.php should be: 16 21 {{{ 17 <content:encoded><![CDATA[<?php the_content_rss('', 0, '',, 2) ?>]]></content:encoded> 22 <content:encoded> 23 <![CDATA[<?php the_content_rss('', 0, '',, 2) ?>]]> 24 </content:encoded> 18 25 }}} 19 26