Version Description
Download this release
Release Info
Developer | paultgoodchild |
Plugin | Shield Security for WordPress |
Version | 10.2.4 |
Comparing to | |
See all releases |
Code changes from version 10.2.3 to 10.2.4
- cl.json +6 -0
- icwp-wpsf.php +1 -1
- plugin-spec.php +3 -3
- readme.txt +1 -1
- src/lib/src/Utilities/Time/WorldTimeApi.php +1 -1
cl.json
CHANGED
@@ -107,6 +107,12 @@
|
|
107 |
"title": "Certain admin JS and CSS assets were loading on the frontend.",
|
108 |
"description": [],
|
109 |
"patch": "10.2.3"
|
|
|
|
|
|
|
|
|
|
|
|
|
110 |
}
|
111 |
]
|
112 |
},
|
107 |
"title": "Certain admin JS and CSS assets were loading on the frontend.",
|
108 |
"description": [],
|
109 |
"patch": "10.2.3"
|
110 |
+
},
|
111 |
+
{
|
112 |
+
"type": "fixed",
|
113 |
+
"title": "Shield would report the server time was out-of-sync when it wasn't.",
|
114 |
+
"description": [],
|
115 |
+
"patch": "10.2.4"
|
116 |
}
|
117 |
]
|
118 |
},
|
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: 10.2.
|
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: 10.2.4
|
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": "10.2.
|
4 |
-
"release_timestamp":
|
5 |
-
"build": "202102.
|
6 |
"slug_parent": "icwp",
|
7 |
"slug_plugin": "wpsf",
|
8 |
"human_name": "Shield Security",
|
1 |
{
|
2 |
"properties": {
|
3 |
+
"version": "10.2.4",
|
4 |
+
"release_timestamp": 1613409800,
|
5 |
+
"build": "202102.1501",
|
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.6
|
11 |
-
Stable tag: 10.2.
|
12 |
|
13 |
The highest rated WordPress Security plugin, delivering unparalleled, all-in-one protection for you and your customers.
|
14 |
|
8 |
Requires PHP: 7.0
|
9 |
Recommended PHP: 7.4
|
10 |
Tested up to: 5.6
|
11 |
+
Stable tag: 10.2.4
|
12 |
|
13 |
The highest rated WordPress Security plugin, delivering unparalleled, all-in-one protection for you and your customers.
|
14 |
|
src/lib/src/Utilities/Time/WorldTimeApi.php
CHANGED
@@ -28,6 +28,6 @@ class WorldTimeApi {
|
|
28 |
* @throws \Exception
|
29 |
*/
|
30 |
public function diffServerWithReal() :int {
|
31 |
-
return
|
32 |
}
|
33 |
}
|
28 |
* @throws \Exception
|
29 |
*/
|
30 |
public function diffServerWithReal() :int {
|
31 |
+
return (int)abs( time() - $this->current() );
|
32 |
}
|
33 |
}
|