Sucuri Security – Auditing, Malware Scanner and Security Hardening - Version 1.8.28

Version Description

  • Silence fopen warning
Download this release

Release Info

Developer unifiedexp
Plugin Icon 128x128 Sucuri Security – Auditing, Malware Scanner and Security Hardening
Version 1.8.28
Comparing to
See all releases

Code changes from version 1.8.27 to 1.8.28

Files changed (4) hide show
  1. lang/sucuri-scanner.pot +3 -3
  2. readme.txt +4 -1
  3. src/cache.lib.php +1 -1
  4. sucuri.php +2 -2
lang/sucuri-scanner.pot CHANGED
@@ -2,16 +2,16 @@
2
  # This file is distributed under the same license as the Sucuri Security - Auditing, Malware Scanner and Hardening plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Sucuri Security - Auditing, Malware Scanner and Hardening 1.8.27\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/sucuri-wordpress-plugin\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-07-20T22:21:26+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
- "X-Generator: WP-CLI 2.4.0\n"
15
  "X-Domain: sucuri-scanner\n"
16
 
17
  #. Plugin Name of the plugin
2
  # This file is distributed under the same license as the Sucuri Security - Auditing, Malware Scanner and Hardening plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Sucuri Security - Auditing, Malware Scanner and Hardening 1.8.28\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/sucuri-wordpress-plugin\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-08-12T19:45:12+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
+ "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: sucuri-scanner\n"
16
 
17
  #. Plugin Name of the plugin
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate Link: https://sucuri.net/
4
  Tags: malware, security, firewall, scan, spam, virus, sucuri, protection, blocklist, detection, hardening, file integrity
5
  Requires at least: 3.6
6
  Tested up to: 5.8
7
- Stable tag: 1.8.27
8
 
9
  The Sucuri WordPress Security plugin is a security toolset for security integrity monitoring, malware detection and security hardening.
10
 
@@ -189,6 +189,9 @@ We take your privacy seriously. For free plugin users without an API key, no inf
189
  This version adds an option to refresh the malware scan results on demand, as well as several small bug fixes and improvements.
190
 
191
  == Changelog ==
 
 
 
192
  = 1.8.27 =
193
  * Add support for PHP 8
194
  * Reduce memory requirements when reading a log file
4
  Tags: malware, security, firewall, scan, spam, virus, sucuri, protection, blocklist, detection, hardening, file integrity
5
  Requires at least: 3.6
6
  Tested up to: 5.8
7
+ Stable tag: 1.8.28
8
 
9
  The Sucuri WordPress Security plugin is a security toolset for security integrity monitoring, malware detection and security hardening.
10
 
189
  This version adds an option to refresh the malware scan results on demand, as well as several small bug fixes and improvements.
190
 
191
  == Changelog ==
192
+ = 1.8.28 =
193
+ * Silence fopen warning
194
+
195
  = 1.8.27 =
196
  * Add support for PHP 8
197
  * Reduce memory requirements when reading a log file
src/cache.lib.php CHANGED
@@ -238,7 +238,7 @@ class SucuriScanCache extends SucuriScan
238
  $object['info'] = array();
239
  $object['entries'] = array();
240
 
241
- if (($fh = fopen($this->datastore_path, 'r')) === false) {
242
  return $object;
243
  }
244
 
238
  $object['info'] = array();
239
  $object['entries'] = array();
240
 
241
+ if (($fh = @fopen($this->datastore_path, 'r')) === false) {
242
  return $object;
243
  }
244
 
sucuri.php CHANGED
@@ -8,7 +8,7 @@
8
  * Author: Sucuri Inc.
9
  * Text Domain: sucuri-scanner
10
  * Domain Path: /lang
11
- * Version: 1.8.27
12
  *
13
  * PHP version 5
14
  *
@@ -85,7 +85,7 @@ define('SUCURISCAN', 'sucuriscan');
85
  /**
86
  * Current version of the plugin's code.
87
  */
88
- define('SUCURISCAN_VERSION', '1.8.27');
89
 
90
  /**
91
  * Defines the human readable name of the plugin.
8
  * Author: Sucuri Inc.
9
  * Text Domain: sucuri-scanner
10
  * Domain Path: /lang
11
+ * Version: 1.8.28
12
  *
13
  * PHP version 5
14
  *
85
  /**
86
  * Current version of the plugin's code.
87
  */
88
+ define('SUCURISCAN_VERSION', '1.8.28');
89
 
90
  /**
91
  * Defines the human readable name of the plugin.