WP RSS Aggregator - Version 4.9.1

Version Description

(2016-08-01) = * Changed copyright and other info in plugin header.

Download this release

Release Info

Developer markzahra
Plugin Icon 128x128 WP RSS Aggregator
Version 4.9.1
Comparing to
See all releases

Code changes from version 4.9 to 4.9.1

Files changed (2) hide show
  1. readme.txt +7 -4
  2. wp-rss-aggregator.php +36 -35
readme.txt CHANGED
@@ -1,11 +1,11 @@
1
  === WP RSS Aggregator ===
2
- Contributors: jeangalea, Mekku, xedin.unknown, markzahra, doytch, chiragswadia
3
- Plugin URI: http://www.wprssaggregator.com
4
  Tags: RSS, RSS feeds, aggregation, autoblog, content curation, feed reader, feed to post, RSS aggregator, RSS feeder, RSS import, RSS to post, syndication, multiple feed import
5
  Requires at least: 4.0
6
  Tested up to: 4.5.2
7
- Stable tag: 4.9
8
- License: GPLv2 or later
9
  WP RSS Aggregator is the most comprehensive RSS feed importer and autoblogging plugin for WordPress with premium add-ons for additional functionality.
10
 
11
 
@@ -210,6 +210,9 @@ Our complete documentation with FAQs included can be found on [our dedicated doc
210
 
211
  == Changelog ==
212
 
 
 
 
213
  = 4.9 (2016-06-14) =
214
  * Fixed bug: Potential security vulnerability related to triggering feed update.
215
  * Fixed bug: Error output on Feed Sources list is trimmed and cannot break the page layout.
1
  === WP RSS Aggregator ===
2
+ Contributors: RebelCode, jeangalea, Mekku, xedin.unknown, markzahra
3
+ Plugin URI: https://www.wprssaggregator.com
4
  Tags: RSS, RSS feeds, aggregation, autoblog, content curation, feed reader, feed to post, RSS aggregator, RSS feeder, RSS import, RSS to post, syndication, multiple feed import
5
  Requires at least: 4.0
6
  Tested up to: 4.5.2
7
+ Stable tag: 4.9.1
8
+ License: GPLv3
9
  WP RSS Aggregator is the most comprehensive RSS feed importer and autoblogging plugin for WordPress with premium add-ons for additional functionality.
10
 
11
 
210
 
211
  == Changelog ==
212
 
213
+ = 4.9.1 (2016-08-01) =
214
+ * Changed copyright and other info in plugin header.
215
+
216
  = 4.9 (2016-06-14) =
217
  * Fixed bug: Potential security vulnerability related to triggering feed update.
218
  * Fixed bug: Error output on Feed Sources list is trimmed and cannot break the page layout.
wp-rss-aggregator.php CHANGED
@@ -1,40 +1,41 @@
1
  <?php
2
- /*
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.9
7
- Author: Jean Galea
8
- Author URI: http://www.wprssaggregator.com
9
- License: GPLv2
10
- License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
- */
12
-
13
- /*
14
- Copyright 2012-2015 Jean Galea (email : info@wprssaggregator.com)
15
- This program is free software; you can redistribute it and/or modify
16
- it under the terms of the GNU General Public License as published by
17
- the Free Software Foundation; either version 2 of the License, or
18
- (at your option) any later version.
19
-
20
- This program is distributed in the hope that it will be useful,
21
- but WITHOUT ANY WARRANTY; without even the implied warranty of
22
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23
- GNU General Public License for more details.
24
-
25
- You should have received a copy of the GNU General Public License
26
- along with this program; if not, write to the Free Software
27
- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
28
- */
 
29
 
30
  /**
31
- * @package WPRSSAggregator
32
- * @version 4.9
33
- * @since 1.0
34
- * @author Jean Galea <info@wprssaggregator.com>
35
- * @copyright Copyright (c) 2012-2015, Jean Galea
36
- * @link http://www.wprssaggregator.com/
37
- * @license http://www.gnu.org/licenses/gpl.html
38
  */
39
 
40
  /**
@@ -43,7 +44,7 @@
43
 
44
  // Set the version number of the plugin.
45
  if( !defined( 'WPRSS_VERSION' ) )
46
- define( 'WPRSS_VERSION', '4.9', true );
47
 
48
  if( !defined( 'WPRSS_WP_MIN_VERSION' ) )
49
  define( 'WPRSS_WP_MIN_VERSION', '4.0', true );
1
  <?php
2
+ /**
3
+ * Plugin Name: WP RSS Aggregator
4
+ * Plugin URI: https://www.wprssaggregator.com/#utm_source=wpadmin&utm_medium=plugin&utm_campaign=wpraplugin
5
+ * Description: Imports and aggregates multiple RSS Feeds.
6
+ * Version: 4.9.1
7
+ * Author: RebelCode
8
+ * Author URI: https://www.wprssaggregator.com
9
+ * Text Domain: wprss
10
+ * Domain Path: /languages/
11
+ * License: GPLv3
12
+ */
13
+
14
+ /**
15
+ * Copyright (C) 2012-2016 RebelCode Ltd.
16
+ *
17
+ * This program is free software: you can redistribute it and/or modify
18
+ * it under the terms of the GNU General Public License as published by
19
+ * the Free Software Foundation, either version 3 of the License, or
20
+ * (at your option) any later version.
21
+ *
22
+ * This program is distributed in the hope that it will be useful,
23
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
24
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25
+ * GNU General Public License for more details.
26
+ *
27
+ * You should have received a copy of the GNU General Public License
28
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
29
+ */
30
 
31
  /**
32
+ * @package WPRSSAggregator
33
+ * @version 4.9.1
34
+ * @since 1.0
35
+ * @author RebelCode
36
+ * @copyright Copyright (c) 2012-2016, RebelCode Ltd.
37
+ * @link https://www.wprssaggregator.com/
38
+ * @license http://www.gnu.org/licenses/gpl.html
39
  */
40
 
41
  /**
44
 
45
  // Set the version number of the plugin.
46
  if( !defined( 'WPRSS_VERSION' ) )
47
+ define( 'WPRSS_VERSION', '4.9.1', true );
48
 
49
  if( !defined( 'WPRSS_WP_MIN_VERSION' ) )
50
  define( 'WPRSS_WP_MIN_VERSION', '4.0', true );