Shield Security for WordPress - Version 6.4.4

Version Description

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

  • (v.1-4) 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.4
Comparing to
See all releases

Code changes from version 6.4.3 to 6.4.4

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.3
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.4
7
  * Text Domain: wp-simple-firewall
8
  * Domain Path: /languages/
9
  * Author: iControlWP
plugin-spec.php CHANGED
@@ -1,7 +1,7 @@
1
  {
2
  "properties": {
3
- "version": "6.4.3",
4
- "release_timestamp": 1519646400,
5
  "slug_parent": "icwp",
6
  "slug_plugin": "wpsf",
7
  "human_name": "Shield",
1
  {
2
  "properties": {
3
+ "version": "6.4.4",
4
+ "release_timestamp": 1519720800,
5
  "slug_parent": "icwp",
6
  "slug_plugin": "wpsf",
7
  "human_name": "Shield",
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.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,10 +358,10 @@ 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.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.
@@ -369,7 +369,7 @@ Technical support is available to premium clients only.
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.
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.4
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.4 - Current Release =
362
  *Released: 26th February, 2018* - [Release Notes](http://icwp.io/br)
363
 
364
+ * **(v.1-4)** 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.
369
  = 6.4 Series =
370
  *Released: 26th February, 2018* - [Release Notes](http://icwp.io/br)
371
 
372
+ * **(v.1-4)** 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.
src/features/hack_protect.php CHANGED
@@ -438,7 +438,7 @@ class ICWP_WPSF_FeatureHandler_HackProtect extends ICWP_WPSF_FeatureHandler_Base
438
  * @return bool
439
  */
440
  public function isPtgReinstallLinks() {
441
- return $this->getOptIs( 'ptg_reinstall_links', 'Y' );
442
  }
443
 
444
  /**
438
  * @return bool
439
  */
440
  public function isPtgReinstallLinks() {
441
+ return $this->isPtgEnabled() && $this->getOptIs( 'ptg_reinstall_links', 'Y' );
442
  }
443
 
444
  /**