Version Description
Download this release
Release Info
Developer | paultgoodchild |
Plugin | Shield Security for WordPress |
Version | 11.4.5 |
Comparing to | |
See all releases |
Code changes from version 11.4.4 to 11.4.5
- cl.json +6 -0
- icwp-wpsf.php +1 -1
- plugin-spec.php +3 -3
- readme.txt +1 -1
- src/lib/src/Modules/HackGuard/Lib/Snapshots/CrowdSourced/SubmitHashes.php +2 -2
cl.json
CHANGED
@@ -82,6 +82,12 @@
|
|
82 |
"title": "Prevent a rare fatal error on certain pages.",
|
83 |
"description": [],
|
84 |
"patch": "11.4.4"
|
|
|
|
|
|
|
|
|
|
|
|
|
85 |
}
|
86 |
]
|
87 |
},
|
82 |
"title": "Prevent a rare fatal error on certain pages.",
|
83 |
"description": [],
|
84 |
"patch": "11.4.4"
|
85 |
+
},
|
86 |
+
{
|
87 |
+
"type": "fixed",
|
88 |
+
"title": "Fix for error showing in logs during cron.",
|
89 |
+
"description": [],
|
90 |
+
"patch": "11.4.5"
|
91 |
}
|
92 |
]
|
93 |
},
|
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.4.
|
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.4.5
|
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.4.
|
4 |
-
"release_timestamp":
|
5 |
-
"build": "202107.
|
6 |
"slug_parent": "icwp",
|
7 |
"slug_plugin": "wpsf",
|
8 |
"human_name": "Shield Security",
|
1 |
{
|
2 |
"properties": {
|
3 |
+
"version": "11.4.5",
|
4 |
+
"release_timestamp": 1626947243,
|
5 |
+
"build": "202107.2201",
|
6 |
"slug_parent": "icwp",
|
7 |
"slug_plugin": "wpsf",
|
8 |
"human_name": "Shield Security",
|
readme.txt
CHANGED
@@ -8,7 +8,7 @@ Requires at least: 3.7
|
|
8 |
Requires PHP: 7.0
|
9 |
Recommended PHP: 7.4
|
10 |
Tested up to: 5.8
|
11 |
-
Stable tag: 11.4.
|
12 |
|
13 |
No-Nonsense Security Hardening that protects WordPress against hackers, malicious bots, and spammers (no captchas!). Now with exclusive ShieldNET Technology.
|
14 |
|
8 |
Requires PHP: 7.0
|
9 |
Recommended PHP: 7.4
|
10 |
Tested up to: 5.8
|
11 |
+
Stable tag: 11.4.5
|
12 |
|
13 |
No-Nonsense Security Hardening that protects WordPress against hackers, malicious bots, and spammers (no captchas!). Now with exclusive ShieldNET Technology.
|
14 |
|
src/lib/src/Modules/HackGuard/Lib/Snapshots/CrowdSourced/SubmitHashes.php
CHANGED
@@ -45,8 +45,8 @@ class SubmitHashes {
|
|
45 |
}
|
46 |
|
47 |
private function canSubmitAsset() :bool {
|
48 |
-
return preg_match( sprintf( '#^%s$#', Regex::ASSET_VERSION ), $this->asset->Version )
|
49 |
-
&& preg_match( sprintf( '#^%s$#', Regex::ASSET_SLUG ), $this->asset->slug );
|
50 |
}
|
51 |
|
52 |
private function isSubmitRequired() :bool {
|
45 |
}
|
46 |
|
47 |
private function canSubmitAsset() :bool {
|
48 |
+
return preg_match( sprintf( '#^%s$#', Regex::ASSET_VERSION ), (string)$this->asset->Version )
|
49 |
+
&& preg_match( sprintf( '#^%s$#', Regex::ASSET_SLUG ), (string)$this->asset->slug );
|
50 |
}
|
51 |
|
52 |
private function isSubmitRequired() :bool {
|