Shield Security for WordPress - Version 6.4.3

Version Description

  • Current Release = Released: 26th February, 2018 - Release Notes

  • (v.3) FIXED: Various Fixes

  • (v.0) ADDED: [PRO] New Scanner to detect file changes for active plugins and themes

  • (v.0) IMPROVED: Automatic updates for vulnerable plugins ignores automatic updates delay setting

  • (v.0) CHANGED: Email notifications for scanners will now link to the Wizard where possible, instead of listing files.

Download this release

Release Info

Developer paultgoodchild
Plugin Icon 128x128 Shield Security for WordPress
Version 6.4.3
Comparing to
See all releases

Code changes from version 6.4.2 to 6.4.3

icwp-wpsf.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Shield Security
4
  * Plugin URI: http://icwp.io/2f
5
  * Description: Powerful, Easy-To-Use #1 Rated WordPress Security System
6
- * Version: 6.4.2
7
  * Text Domain: wp-simple-firewall
8
  * Domain Path: /languages/
9
  * Author: iControlWP
3
  * Plugin Name: Shield Security
4
  * Plugin URI: http://icwp.io/2f
5
  * Description: Powerful, Easy-To-Use #1 Rated WordPress Security System
6
+ * Version: 6.4.3
7
  * Text Domain: wp-simple-firewall
8
  * Domain Path: /languages/
9
  * Author: iControlWP
plugin-spec.php CHANGED
@@ -1,6 +1,6 @@
1
  {
2
  "properties": {
3
- "version": "6.4.2",
4
  "release_timestamp": 1519646400,
5
  "slug_parent": "icwp",
6
  "slug_plugin": "wpsf",
1
  {
2
  "properties": {
3
+ "version": "6.4.3",
4
  "release_timestamp": 1519646400,
5
  "slug_parent": "icwp",
6
  "slug_plugin": "wpsf",
readme.txt CHANGED
@@ -6,7 +6,7 @@ License URI: http://www.gnu.org/licenses/gpl.html
6
  Tags: security, all in one, protect, spam, scan, recaptcha, two-factor authentication, login, 2FA, ithemes, wordfence, better wp security, all-in-one, lockdown, hack
7
  Requires at least: 3.5.0
8
  Tested up to: 4.9
9
- Stable tag: 6.4.2
10
 
11
  Free All-In-One Protection for your WordPress sites, data, reputation, and users. Shield: the Highest-Rated Security Plugin for WordPress
12
 
@@ -358,19 +358,21 @@ Technical support, and some newer features will not be available to you, however
358
  You can [go Pro for just $1/month](http://icwp.io/aa).
359
  Technical support is available to premium clients only.
360
 
361
- = 6.4.1 - Current Release =
362
  *Released: 26th February, 2018* - [Release Notes](http://icwp.io/br)
363
 
364
- * **(v.2)** ADDED: [**PRO**] New Scanner to [detect file changes for active plugins and themes](http://icwp.io/bq)
365
- * **(v.2)** IMPROVED: Automatic updates for vulnerable plugins ignores [automatic updates delay setting](http://icwp.io/bc)
366
- * **(v.2)** CHANGED: Email notifications for scanners will now link to the Wizard where possible, instead of listing files.
 
367
 
368
  = 6.4 Series =
369
  *Released: 26th February, 2018* - [Release Notes](http://icwp.io/br)
370
 
371
- * **(v.2)** ADDED: [**PRO**] New Scanner to [detect file changes for active plugins and themes](http://icwp.io/bq)
372
- * **(v.2)** IMPROVED: Automatic updates for vulnerable plugins ignores [automatic updates delay setting](http://icwp.io/bc)
373
- * **(v.2)** CHANGED: Email notifications for scanners will now link to the Wizard where possible, instead of listing files.
 
374
 
375
  = 6.3 Series =
376
  *Released: 12th February, 2018* - [Release Notes](http://icwp.io/bc)
6
  Tags: security, all in one, protect, spam, scan, recaptcha, two-factor authentication, login, 2FA, ithemes, wordfence, better wp security, all-in-one, lockdown, hack
7
  Requires at least: 3.5.0
8
  Tested up to: 4.9
9
+ Stable tag: 6.4.3
10
 
11
  Free All-In-One Protection for your WordPress sites, data, reputation, and users. Shield: the Highest-Rated Security Plugin for WordPress
12
 
358
  You can [go Pro for just $1/month](http://icwp.io/aa).
359
  Technical support is available to premium clients only.
360
 
361
+ = 6.4.3 - Current Release =
362
  *Released: 26th February, 2018* - [Release Notes](http://icwp.io/br)
363
 
364
+ * **(v.3)** FIXED: Various Fixes
365
+ * **(v.0)** ADDED: [**PRO**] New Scanner to [detect file changes for active plugins and themes](http://icwp.io/bq)
366
+ * **(v.0)** IMPROVED: Automatic updates for vulnerable plugins ignores [automatic updates delay setting](http://icwp.io/bc)
367
+ * **(v.0)** CHANGED: Email notifications for scanners will now link to the Wizard where possible, instead of listing files.
368
 
369
  = 6.4 Series =
370
  *Released: 26th February, 2018* - [Release Notes](http://icwp.io/br)
371
 
372
+ * **(v.3)** FIXED: Various Fixes
373
+ * **(v.0)** ADDED: [**PRO**] New Scanner to [detect file changes for active plugins and themes](http://icwp.io/bq)
374
+ * **(v.0)** IMPROVED: Automatic updates for vulnerable plugins ignores [automatic updates delay setting](http://icwp.io/bc)
375
+ * **(v.0)** CHANGED: Email notifications for scanners will now link to the Wizard where possible, instead of listing files.
376
 
377
  = 6.3 Series =
378
  *Released: 12th February, 2018* - [Release Notes](http://icwp.io/bc)
src/common/icwp-wpfilesystem.php CHANGED
@@ -110,7 +110,9 @@ class ICWP_WPSF_WpFilesystem {
110
  try {
111
  if ( empty( $oDirIterator ) ) {
112
  $oDirIterator = new RecursiveDirectoryIterator( $sDir );
113
- $oDirIterator->setFlags( RecursiveDirectoryIterator::SKIP_DOTS );
 
 
114
  }
115
 
116
  $oRecurIter = new RecursiveIteratorIterator( $oDirIterator );
110
  try {
111
  if ( empty( $oDirIterator ) ) {
112
  $oDirIterator = new RecursiveDirectoryIterator( $sDir );
113
+ if ( method_exists( $oDirIterator, 'setFlags' ) ) {
114
+ $oDirIterator->setFlags( RecursiveDirectoryIterator::SKIP_DOTS );
115
+ }
116
  }
117
 
118
  $oRecurIter = new RecursiveIteratorIterator( $oDirIterator );