Shield Security for WordPress - Version 11.0.1

Version Description

Download this release

Release Info

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

Code changes from version 11.0.0 to 11.0.1

cl.json CHANGED
@@ -88,6 +88,13 @@
88
  "WP-Config FileLocker system is more reliable with requests in the case of database problems",
89
  "Lots of code cleanup"
90
  ]
 
 
 
 
 
 
 
91
  }
92
  ]
93
  },
88
  "WP-Config FileLocker system is more reliable with requests in the case of database problems",
89
  "Lots of code cleanup"
90
  ]
91
+ },
92
+ {
93
+ "type": "fixed",
94
+ "title": "Gravity Form error",
95
+ "description": [
96
+ ],
97
+ "patch": "11.0.1"
98
  }
99
  ]
100
  },
icwp-wpsf.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Shield Security
4
  * Plugin URI: https://shsec.io/2f
5
  * Description: Powerful, Easy-To-Use #1 Rated WordPress Security System
6
- * Version: 11.0.0
7
  * Text Domain: wp-simple-firewall
8
  * Domain Path: /languages
9
  * Author: Shield Security
3
  * Plugin Name: Shield Security
4
  * Plugin URI: https://shsec.io/2f
5
  * Description: Powerful, Easy-To-Use #1 Rated WordPress Security System
6
+ * Version: 11.0.1
7
  * Text Domain: wp-simple-firewall
8
  * Domain Path: /languages
9
  * Author: Shield Security
plugin-spec.php CHANGED
@@ -1,8 +1,8 @@
1
  {
2
  "properties": {
3
- "version": "11.0.0",
4
- "release_timestamp": 1616666000,
5
- "build": "202103.2501",
6
  "slug_parent": "icwp",
7
  "slug_plugin": "wpsf",
8
  "human_name": "Shield Security",
1
  {
2
  "properties": {
3
+ "version": "11.0.1",
4
+ "release_timestamp": 1616673279,
5
+ "build": "202103.2502",
6
  "slug_parent": "icwp",
7
  "slug_plugin": "wpsf",
8
  "human_name": "Shield Security",
readme.txt CHANGED
@@ -8,7 +8,7 @@ Requires at least: 3.5.2
8
  Requires PHP: 7.0
9
  Recommended PHP: 7.4
10
  Tested up to: 5.7
11
- Stable tag: 11.0.0
12
  Security against hackers and brute force bots with firewall, login security hiding and hardening, Antispam, Audit Trail, Live Traffic, and much more...
13
 
14
  == Description ==
8
  Requires PHP: 7.0
9
  Recommended PHP: 7.4
10
  Tested up to: 5.7
11
+ Stable tag: 11.0.1
12
  Security against hackers and brute force bots with firewall, login security hiding and hardening, Antispam, Audit Trail, Live Traffic, and much more...
13
 
14
  == Description ==
src/lib/src/Modules/Integrations/Lib/Spam/Handlers/GravityForms.php CHANGED
@@ -15,7 +15,8 @@ class GravityForms extends Base {
15
  }
16
 
17
  protected function isProviderAvailable() :bool {
18
- return @class_exists( 'GFForms' ) && isset( GFForms::$version )
19
- && version_compare( GFForms::$version, '2.4.17', '>=' );
 
20
  }
21
  }
15
  }
16
 
17
  protected function isProviderAvailable() :bool {
18
+ return @class_exists( '\GFForms' )
19
+ && isset( \GFForms::$version )
20
+ && version_compare( \GFForms::$version, '2.4.17', '>=' );
21
  }
22
  }