Shield Security for WordPress - Version 15.0.13

Version Description

Download this release

Release Info

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

Code changes from version 15.0.12 to 15.0.13

cl.json CHANGED
@@ -235,6 +235,16 @@
235
  "type": "fixed"
236
  }
237
  ]
 
 
 
 
 
 
 
 
 
 
238
  }
239
  ]
240
  },
235
  "type": "fixed"
236
  }
237
  ]
238
+ },
239
+ {
240
+ "version": "13",
241
+ "released_at": 1652947091,
242
+ "items": [
243
+ {
244
+ "title": "An sporadic error relating to Shield's User Meta.",
245
+ "type": "fixed"
246
+ }
247
+ ]
248
  }
249
  ]
250
  },
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: 15.0.12
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: 15.0.13
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": "15.0.12",
4
- "release_timestamp": 1652602100,
5
- "build": "202205.1503",
6
  "slug_parent": "icwp",
7
  "slug_plugin": "wpsf",
8
  "human_name": "Shield Security",
1
  {
2
  "properties": {
3
+ "version": "15.0.13",
4
+ "release_timestamp": 1652947091,
5
+ "build": "202205.1901",
6
  "slug_parent": "icwp",
7
  "slug_plugin": "wpsf",
8
  "human_name": "Shield Security",
plugin.json CHANGED
@@ -1,8 +1,8 @@
1
  {
2
  "properties": {
3
- "version": "15.0.12",
4
- "release_timestamp": 1652602100,
5
- "build": "202205.1503",
6
  "slug_parent": "icwp",
7
  "slug_plugin": "wpsf",
8
  "human_name": "Shield Security",
1
  {
2
  "properties": {
3
+ "version": "15.0.13",
4
+ "release_timestamp": 1652947091,
5
+ "build": "202205.1901",
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: 6.0
11
- Stable tag: 15.0.12
12
 
13
  Bad Bots Are Your #1 Security Risk. Malware is a symptom of poor security, not its cause. Discover the advantage of powerful security over marketing.
14
 
8
  Requires PHP: 7.0
9
  Recommended PHP: 7.4
10
  Tested up to: 6.0
11
+ Stable tag: 15.0.13
12
 
13
  Bad Bots Are Your #1 Security Risk. Malware is a symptom of poor security, not its cause. Discover the advantage of powerful security over marketing.
14
 
src/lib/src/Modules/Data/DB/UserMeta/MetaRecords.php CHANGED
@@ -43,7 +43,7 @@ class MetaRecords {
43
  $record->user_id = $userID;
44
  $record->ip_ref = ( new IPRecords() )
45
  ->setMod( $this->getCon()->getModule_Data() )
46
- ->loadIP( $this->getCon()->this_req->ip, true )
47
  ->id;
48
  return $insert->insert( $record );
49
  }
43
  $record->user_id = $userID;
44
  $record->ip_ref = ( new IPRecords() )
45
  ->setMod( $this->getCon()->getModule_Data() )
46
+ ->loadIP( (string)$this->getCon()->this_req->ip, true )
47
  ->id;
48
  return $insert->insert( $record );
49
  }
src/lib/src/Request/ThisRequest.php CHANGED
@@ -39,7 +39,7 @@ class ThisRequest extends DynPropertiesClass {
39
 
40
  case 'ip':
41
  if ( empty( $value ) ) {
42
- $value = Services::IP()->getRequestIp();
43
  $this->ip = $value;
44
  }
45
  break;
39
 
40
  case 'ip':
41
  if ( empty( $value ) ) {
42
+ $value = (string)Services::IP()->getRequestIp();
43
  $this->ip = $value;
44
  }
45
  break;