Shield Security for WordPress - Version 6.4.2

Version Description

Download this release

Release Info

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

Code changes from version 6.4.1 to 6.4.2

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.1
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.2
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.1",
4
  "release_timestamp": 1519646400,
5
  "slug_parent": "icwp",
6
  "slug_plugin": "wpsf",
1
  {
2
  "properties": {
3
+ "version": "6.4.2",
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.1
10
 
11
  Free All-In-One Protection for your WordPress sites, data, reputation, and users. Shield: the Highest-Rated Security Plugin for WordPress
12
 
@@ -361,16 +361,16 @@ Technical support is available to premium clients only.
361
  = 6.4.1 - Current Release =
362
  *Released: 26th February, 2018* - [Release Notes](http://icwp.io/br)
363
 
364
- * **(v.1)** ADDED: [**PRO**] New Scanner to [detect file changes for active plugins and themes](http://icwp.io/bq)
365
- * **(v.1)** IMPROVED: Automatic updates for vulnerable plugins ignores [automatic updates delay setting](http://icwp.io/bc)
366
- * **(v.1)** 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.0)** ADDED: [**PRO**] New Scanner to [detect file changes for active plugins and themes](http://icwp.io/bq)
372
- * **(v.0)** IMPROVED: Automatic updates for vulnerable plugins ignores [automatic updates delay setting](http://icwp.io/bc)
373
- * **(v.0)** 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.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
 
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)
src/wizards/hack_protect.php CHANGED
@@ -25,7 +25,9 @@ class ICWP_WPSF_Wizard_HackProtect extends ICWP_WPSF_Wizard_BaseWpsf {
25
  protected function getWizardAvailability( $sKey ) {
26
  switch ( $sKey ) {
27
  case 'ptg':
28
- $bAvailable = false;
 
 
29
  break;
30
  default:
31
  $bAvailable = parent::getWizardAvailability( $sKey );
25
  protected function getWizardAvailability( $sKey ) {
26
  switch ( $sKey ) {
27
  case 'ptg':
28
+ /** @var ICWP_WPSF_FeatureHandler_HackProtect $oFO */
29
+ $oFO = $this->getModCon();
30
+ $bAvailable = $oFO->isPtgEnabled();
31
  break;
32
  default:
33
  $bAvailable = parent::getWizardAvailability( $sKey );