Version Description
Download this release
Release Info
Developer | radgeek |
Plugin | FeedWordPress |
Version | 2009.1112 |
Comparing to | |
See all releases |
Code changes from version 2009.1111 to 2009.1112
- feedwordpress.php +6 -6
- readme.txt +1 -1
feedwordpress.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: FeedWordPress
|
4 |
Plugin URI: http://feedwordpress.radgeek.com/
|
5 |
Description: simple and flexible Atom/RSS syndication for WordPress
|
6 |
-
Version: 2009.
|
7 |
Author: Charles Johnson
|
8 |
Author URI: http://radgeek.com/
|
9 |
License: GPL
|
@@ -28,7 +28,7 @@ License: GPL
|
|
28 |
|
29 |
# -- Don't change these unless you know what you're doing...
|
30 |
|
31 |
-
define ('FEEDWORDPRESS_VERSION', '2009.
|
32 |
define ('FEEDWORDPRESS_AUTHOR_CONTACT', 'http://radgeek.com/contact');
|
33 |
|
34 |
// Defaults
|
@@ -531,14 +531,14 @@ function feedwordpress_item_feed_data () {
|
|
531 |
if (is_syndicated()) :
|
532 |
?>
|
533 |
<source>
|
534 |
-
<title><?php
|
535 |
-
<link rel="alternate" type="text/html" href="<?php
|
536 |
-
<link rel="self" href="<?php
|
537 |
<?php
|
538 |
$id = get_syndication_feed_guid();
|
539 |
if (strlen($id) > 0) :
|
540 |
?>
|
541 |
-
<id><?php print $id; ?></id>
|
542 |
<?php
|
543 |
endif;
|
544 |
$updated = get_feed_meta('feed/updated');
|
3 |
Plugin Name: FeedWordPress
|
4 |
Plugin URI: http://feedwordpress.radgeek.com/
|
5 |
Description: simple and flexible Atom/RSS syndication for WordPress
|
6 |
+
Version: 2009.1112
|
7 |
Author: Charles Johnson
|
8 |
Author URI: http://radgeek.com/
|
9 |
License: GPL
|
28 |
|
29 |
# -- Don't change these unless you know what you're doing...
|
30 |
|
31 |
+
define ('FEEDWORDPRESS_VERSION', '2009.1112');
|
32 |
define ('FEEDWORDPRESS_AUTHOR_CONTACT', 'http://radgeek.com/contact');
|
33 |
|
34 |
// Defaults
|
531 |
if (is_syndicated()) :
|
532 |
?>
|
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()); ?>" />
|
537 |
<?php
|
538 |
$id = get_syndication_feed_guid();
|
539 |
if (strlen($id) > 0) :
|
540 |
?>
|
541 |
+
<id><?php print htmlspecialchars($id); ?></id>
|
542 |
<?php
|
543 |
endif;
|
544 |
$updated = get_feed_meta('feed/updated');
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://feedwordpress.radgeek.com/
|
|
4 |
Tags: syndication, aggregation, feed, atom, rss
|
5 |
Requires at least: 1.5
|
6 |
Tested up to: 2.8.4
|
7 |
-
Stable tag: 2009.
|
8 |
|
9 |
FeedWordPress syndicates content from feeds you choose into your WordPress weblog.
|
10 |
|
4 |
Tags: syndication, aggregation, feed, atom, rss
|
5 |
Requires at least: 1.5
|
6 |
Tested up to: 2.8.4
|
7 |
+
Stable tag: 2009.1112
|
8 |
|
9 |
FeedWordPress syndicates content from feeds you choose into your WordPress weblog.
|
10 |
|