| @@ -2,9 +2,9 @@ | ||
| 2 | 2 | /* |
| 3 | 3 | Plugin Name: FeedWordPress |
| 4 | 4 | Plugin URI: http://feedwordpress.radgeek.com/ |
| 5 | 5 | Description: simple and flexible Atom/RSS syndication for WordPress |
| 6 | -Version: 2009.1112 | |
| 6 | +Version: 2009.1111 | |
| 7 | 7 | Author: Charles Johnson |
| 8 | 8 | Author URI: http://radgeek.com/ |
| 9 | 9 | License: GPL |
| 10 | 10 | */ |
| @@ -27,9 +27,9 @@ | ||
| 27 | 27 | # or use a cron job. |
| 28 | 28 | |
| 29 | 29 | # -- Don't change these unless you know what you're doing... |
| 30 | 30 | |
| 31 | -define ('FEEDWORDPRESS_VERSION', '2009.1112'); | |
| 31 | +define ('FEEDWORDPRESS_VERSION', '2009.0803'); | |
| 32 | 32 | define ('FEEDWORDPRESS_AUTHOR_CONTACT', 'http://radgeek.com/contact'); |
| 33 | 33 | |
| 34 | 34 | // Defaults |
| 35 | 35 | define ('DEFAULT_SYNDICATION_CATEGORY', 'Contributors'); |
| @@ -530,16 +530,16 @@ | ||
| 530 | 530 | // In a post context.... |
| 531 | 531 | if (is_syndicated()) : |
| 532 | 532 | ?> |
| 533 | 533 | <source> |
| 534 | - <title><?php print htmlspecialchars(get_syndication_source()); ?></title> | |
| 535 | - <link rel="alternate" type="text/html" href="<?php print htmlspecialchars(get_syndication_source_link()); ?>" /> | |
| 536 | - <link rel="self" href="<?php print htmlspecialchars(get_syndication_feed()); ?>" /> | |
| 534 | + <title><?php the_syndication_source(); ?></title> | |
| 535 | + <link rel="alternate" type="text/html" href="<?php the_syndication_source_link(); ?>" /> | |
| 536 | + <link rel="self" href="<?php the_syndication_feed(); ?>" /> | |
| 537 | 537 | <?php |
| 538 | 538 | $id = get_syndication_feed_guid(); |
| 539 | 539 | if (strlen($id) > 0) : |
| 540 | 540 | ?> |
| 541 | - <id><?php print htmlspecialchars($id); ?></id> | |
| 541 | + <id><?php print $id; ?></id> | |
| 542 | 542 | <?php |
| 543 | 543 | endif; |
| 544 | 544 | $updated = get_feed_meta('feed/updated'); |
| 545 | 545 | if (strlen($updated) > 0) : ?> |