WP RSS Aggregator - Version 4.1.6

Version Description

(2014-06-28)

Download this release

Release Info

Developer jeangalea
Plugin Icon 128x128 WP RSS Aggregator
Version 4.1.6
Comparing to
See all releases

Code changes from version 4.1.5 to 4.1.6

changelog.txt CHANGED
@@ -1,4 +1,8 @@
1
- 4.1.5 (2014-05-19)
 
 
 
 
2
  Enhanced: The Feed Sources table now indicates which feed sources encountered errors during the last import.
3
  Fixed bug: Feed titles were not being decoded for HTML entities.
4
 
1
+ 4.1.6 (2014-06-28)
2
+ Fixed bug: Results returned by wprss_get_feed_items_for_source() will no longer be affected by filters.
3
+ Fixed bug: Charset issue in titles
4
+
5
+ 4.1.5 (2014-06-19)
6
  Enhanced: The Feed Sources table now indicates which feed sources encountered errors during the last import.
7
  Fixed bug: Feed titles were not being decoded for HTML entities.
8
 
includes/feed-display.php CHANGED
@@ -197,8 +197,8 @@
197
  // convert from Unix timestamp
198
  $date = date_i18n( $general_settings['date_format'], $timestamp );
199
 
200
- // Prepare the title. Decode any html entitities
201
- $feed_item_title = htmlentities( get_the_title() );
202
 
203
  if ( $general_settings['title_link'] == 1 ) {
204
  $feed_item_title_link = $permalink;
197
  // convert from Unix timestamp
198
  $date = date_i18n( $general_settings['date_format'], $timestamp );
199
 
200
+ // Prepare the title
201
+ $feed_item_title = get_the_title();
202
 
203
  if ( $general_settings['title_link'] == 1 ) {
204
  $feed_item_title_link = $permalink;
includes/feed-processing.php CHANGED
@@ -87,7 +87,8 @@
87
  'value' => $source_id,
88
  'compare' => 'LIKE',
89
  ),
90
- )
 
91
  ), $source_id
92
  );
93
  return new WP_Query( $args );
87
  'value' => $source_id,
88
  'compare' => 'LIKE',
89
  ),
90
+ ),
91
+ 'suppress_filters' => 1
92
  ), $source_id
93
  );
94
  return new WP_Query( $args );
readme.txt CHANGED
@@ -4,8 +4,8 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Plugin URI: http://www.wprssaggregator.com
5
  Tags: rss, feeds, aggregation, rss to post, autoblog aggregator, rss import, feed aggregator, rss aggregator, multiple rss feeds, multi rss feeds, rss multi importer, feed import, feed import, multiple feed import, feed aggregation, rss feader, feed reader, feed to post, multiple feeds, multi feed importer, multi feed import, multi import, autoblogging, autoblogger
6
  Requires at least: 3.3
7
- Tested up to: 3.8.1
8
- Stable tag: 4.1.5
9
  License: GPLv2 or later
10
  Imports and aggregates multiple RSS Feeds using SimplePie. Outputs feeds sorted by date (latest first).
11
 
@@ -79,6 +79,7 @@ WP RSS Aggregator uses the SimplePie class to import and handle feeds, and store
79
  * [MyWPExpert](http://www.mywpexpert.com/wordpress-rss-aggregator-plugin)
80
  * [Kikolani](http://kikolani.com/create-latest-posts-portfolio-page-wp-rss-aggregator.html)
81
  * [ManageWP Plugins of the Month](http://managewp.com/free-wordpress-plugins-march-2014)
 
82
  * [WP Eka](http://www.wpeka.com/wp-rss-aggregators-plugin.html)
83
  * [IndexWP](www.indexwp.com/wp-rss-aggregator-plugin-review/)
84
  * [WPulsar](http://www.wpulsar.com/wp-rss-aggregator-plugin-feed-to-posts-keyword-filtering-review/)
@@ -162,7 +163,11 @@ The full documentation section can be found on the [WP RSS Aggregator website](w
162
 
163
  == Changelog ==
164
 
165
- = 4.1.5 (2014-05-19) =
 
 
 
 
166
  * Enhanced: The Feed Sources table now indicates which feed sources encountered errors during the last import.
167
  * Fixed bug: Feed titles were not being decoded for HTML entities.
168
 
4
  Plugin URI: http://www.wprssaggregator.com
5
  Tags: rss, feeds, aggregation, rss to post, autoblog aggregator, rss import, feed aggregator, rss aggregator, multiple rss feeds, multi rss feeds, rss multi importer, feed import, feed import, multiple feed import, feed aggregation, rss feader, feed reader, feed to post, multiple feeds, multi feed importer, multi feed import, multi import, autoblogging, autoblogger
6
  Requires at least: 3.3
7
+ Tested up to: 3.9.1
8
+ Stable tag: 4.1.6
9
  License: GPLv2 or later
10
  Imports and aggregates multiple RSS Feeds using SimplePie. Outputs feeds sorted by date (latest first).
11
 
79
  * [MyWPExpert](http://www.mywpexpert.com/wordpress-rss-aggregator-plugin)
80
  * [Kikolani](http://kikolani.com/create-latest-posts-portfolio-page-wp-rss-aggregator.html)
81
  * [ManageWP Plugins of the Month](http://managewp.com/free-wordpress-plugins-march-2014)
82
+ * [TidyRepo](http://tidyrepo.com/wp-rss-aggregator/)
83
  * [WP Eka](http://www.wpeka.com/wp-rss-aggregators-plugin.html)
84
  * [IndexWP](www.indexwp.com/wp-rss-aggregator-plugin-review/)
85
  * [WPulsar](http://www.wpulsar.com/wp-rss-aggregator-plugin-feed-to-posts-keyword-filtering-review/)
163
 
164
  == Changelog ==
165
 
166
+ = 4.1.6 (2014-06-28) =
167
+ * Fixed bug: Results returned by wprss_get_feed_items_for_source() will no longer be affected by filters.
168
+ * Fixed bug: Charset issue in titles
169
+
170
+ = 4.1.5 (2014-06-19) =
171
  * Enhanced: The Feed Sources table now indicates which feed sources encountered errors during the last import.
172
  * Fixed bug: Feed titles were not being decoded for HTML entities.
173
 
wp-rss-aggregator.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WP RSS Aggregator
4
  Plugin URI: http://www.wprssaggregator.com
5
  Description: Imports and aggregates multiple RSS Feeds using SimplePie
6
- Version: 4.1.5
7
  Author: Jean Galea
8
  Author URI: http://www.wprssaggregator.com
9
  License: GPLv2
@@ -29,7 +29,7 @@
29
 
30
  /**
31
  * @package WPRSSAggregator
32
- * @version 4.1.5
33
  * @since 1.0
34
  * @author Jean Galea <info@jeangalea.com>
35
  * @copyright Copyright (c) 2012-2014, Jean Galea
@@ -43,7 +43,7 @@
43
 
44
  // Set the version number of the plugin.
45
  if( !defined( 'WPRSS_VERSION' ) )
46
- define( 'WPRSS_VERSION', '4.1.5', true );
47
 
48
  // Set the database version number of the plugin.
49
  if( !defined( 'WPRSS_DB_VERSION' ) )
3
  Plugin Name: WP RSS Aggregator
4
  Plugin URI: http://www.wprssaggregator.com
5
  Description: Imports and aggregates multiple RSS Feeds using SimplePie
6
+ Version: 4.1.6
7
  Author: Jean Galea
8
  Author URI: http://www.wprssaggregator.com
9
  License: GPLv2
29
 
30
  /**
31
  * @package WPRSSAggregator
32
+ * @version 4.1.6
33
  * @since 1.0
34
  * @author Jean Galea <info@jeangalea.com>
35
  * @copyright Copyright (c) 2012-2014, Jean Galea
43
 
44
  // Set the version number of the plugin.
45
  if( !defined( 'WPRSS_VERSION' ) )
46
+ define( 'WPRSS_VERSION', '4.1.6', true );
47
 
48
  // Set the database version number of the plugin.
49
  if( !defined( 'WPRSS_DB_VERSION' ) )