RSS Post Importer - Version 2.2.2

Version Description

Download this release

Release Info

Developer feedsapi
Plugin Icon 128x128 RSS Post Importer
Version 2.2.2
Comparing to
See all releases

Code changes from version 2.2.1 to 2.2.2

app/classes/admin/class-rss-pi-admin-processor.php CHANGED
@@ -215,9 +215,10 @@ class rssPIAdminProcessor {
215
  delete_option( 'rss_custom_cron_frequency' );
216
  }
217
 
 
218
  $settings = array(
219
  'frequency' => $frequency,
220
- 'feeds_api_key' => $_POST['feeds_api_key'],
221
  'post_template' => stripslashes_deep($_POST['post_template']),
222
  'post_status' => $_POST['post_status'],
223
  'author_id' => $_POST['author_id'],
215
  delete_option( 'rss_custom_cron_frequency' );
216
  }
217
 
218
+
219
  $settings = array(
220
  'frequency' => $frequency,
221
+ 'feeds_api_key' => htmlentities($_POST['feeds_api_key']),
222
  'post_template' => stripslashes_deep($_POST['post_template']),
223
  'post_status' => $_POST['post_status'],
224
  'author_id' => $_POST['author_id'],
index.php CHANGED
@@ -5,7 +5,7 @@
5
  Plugin URI: https://wordpress.org/plugins/rss-post-importer/
6
  Description: This plugin lets you set up an import posts from one or several rss-feeds and save them as posts on your site, simple and flexible.
7
  Author: feedsapi
8
- Version: 2.2.1
9
  Author URI: https://www.feedsapi.org/
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -27,7 +27,7 @@ if (!defined('RSS_PI_BASENAME')) {
27
  }
28
 
29
  if (!defined('RSS_PI_VERSION')) {
30
- define('RSS_PI_VERSION', '2.2.1');
31
  }
32
 
33
  if (!defined('RSS_PI_LOG_PATH')) {
5
  Plugin URI: https://wordpress.org/plugins/rss-post-importer/
6
  Description: This plugin lets you set up an import posts from one or several rss-feeds and save them as posts on your site, simple and flexible.
7
  Author: feedsapi
8
+ Version: 2.2.2
9
  Author URI: https://www.feedsapi.org/
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
27
  }
28
 
29
  if (!defined('RSS_PI_VERSION')) {
30
+ define('RSS_PI_VERSION', '2.2.2');
31
  }
32
 
33
  if (!defined('RSS_PI_LOG_PATH')) {
readme.txt CHANGED
@@ -124,6 +124,9 @@ Learn more (and get detailed instructions) in our [contribute guide](http://jetp
124
 
125
  == Change Log ==
126
 
 
 
 
127
  = Version 2.2.1 =
128
  * Bug fixing and improvement.
129
 
124
 
125
  == Change Log ==
126
 
127
+ = Version 2.2.2 =
128
+ * Stability update.
129
+
130
  = Version 2.2.1 =
131
  * Bug fixing and improvement.
132