Version Description
Download this release
Release Info
Developer | paultgoodchild |
Plugin | Shield Security for WordPress |
Version | 11.0.2 |
Comparing to | |
See all releases |
Code changes from version 11.0.1 to 11.0.2
- cl.json +7 -2
- icwp-wpsf.php +1 -1
- plugin-spec.php +3 -3
- readme.txt +1 -1
- src/lib/vendor/fernleafsystems/wordpress-services/src/Utilities/ServiceProviders.php +1 -1
cl.json
CHANGED
@@ -92,9 +92,14 @@
|
|
92 |
{
|
93 |
"type": "fixed",
|
94 |
"title": "Gravity Form error",
|
95 |
-
"description": [
|
96 |
-
],
|
97 |
"patch": "11.0.1"
|
|
|
|
|
|
|
|
|
|
|
|
|
98 |
}
|
99 |
]
|
100 |
},
|
92 |
{
|
93 |
"type": "fixed",
|
94 |
"title": "Gravity Form error",
|
95 |
+
"description": [],
|
|
|
96 |
"patch": "11.0.1"
|
97 |
+
},
|
98 |
+
{
|
99 |
+
"type": "fixed",
|
100 |
+
"title": "Performance issue.",
|
101 |
+
"description": [],
|
102 |
+
"patch": "11.0.2"
|
103 |
}
|
104 |
]
|
105 |
},
|
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.
|
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.2
|
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.
|
4 |
-
"release_timestamp":
|
5 |
-
"build": "202103.
|
6 |
"slug_parent": "icwp",
|
7 |
"slug_plugin": "wpsf",
|
8 |
"human_name": "Shield Security",
|
1 |
{
|
2 |
"properties": {
|
3 |
+
"version": "11.0.2",
|
4 |
+
"release_timestamp": 1616677700,
|
5 |
+
"build": "202103.2503",
|
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.
|
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.2
|
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/vendor/fernleafsystems/wordpress-services/src/Utilities/ServiceProviders.php
CHANGED
@@ -20,7 +20,7 @@ class ServiceProviders {
|
|
20 |
*/
|
21 |
public static function GetProviderIPs() :array {
|
22 |
$IPs = Transient::Get( 'apto_provider_ips' );
|
23 |
-
if (
|
24 |
$IPs = ( new ProviderIPs() )->getIPs();
|
25 |
if ( empty( $IPs ) ) { // fallback
|
26 |
$raw = Services::Data()->readFileWithInclude( Services::DataDir( 'service_providers.json' ) );
|
20 |
*/
|
21 |
public static function GetProviderIPs() :array {
|
22 |
$IPs = Transient::Get( 'apto_provider_ips' );
|
23 |
+
if ( empty( $IPs ) || !is_array( $IPs ) ) {
|
24 |
$IPs = ( new ProviderIPs() )->getIPs();
|
25 |
if ( empty( $IPs ) ) { // fallback
|
26 |
$raw = Services::Data()->readFileWithInclude( Services::DataDir( 'service_providers.json' ) );
|