Version Description
- Removing use of constants for arrays for PHP 5.4 support.
Download this release
Release Info
Developer | ritesh.soni36 |
Plugin | MalCare WordPress Security Plugin – Malware Scanner, Cleaner, Security Firewall |
Version | 4.68 |
Comparing to | |
See all releases |
Code changes from version 4.67 to 4.68
- callback/base.php +2 -2
- callback/handler.php +4 -0
- callback/wings/misc.php +2 -2
- info.php +1 -1
- malcare.php +1 -1
- readme.txt +4 -1
callback/base.php
CHANGED
@@ -5,11 +5,11 @@ if (!class_exists('BVCallbackBase')) :
|
|
5 |
|
6 |
class BVCallbackBase {
|
7 |
|
8 |
-
|
9 |
"BRAND_WING_VERSION" => '1.0',
|
10 |
"DB_WING_VERSION" => '1.0',
|
11 |
"ACCOUNT_WING_VERSION" => '1.0',
|
12 |
-
"MISC_WING_VERSION" => '1.
|
13 |
"FS_WING_VERSION" => '1.0',
|
14 |
"INFO_WING_VERSION" => '1.0',
|
15 |
"WATCH_WING_VERSION" => '1.0',
|
5 |
|
6 |
class BVCallbackBase {
|
7 |
|
8 |
+
public static $wing_infos = array("ACTLOG_WING_VERSION" => '1.0',
|
9 |
"BRAND_WING_VERSION" => '1.0',
|
10 |
"DB_WING_VERSION" => '1.0',
|
11 |
"ACCOUNT_WING_VERSION" => '1.0',
|
12 |
+
"MISC_WING_VERSION" => '1.1',
|
13 |
"FS_WING_VERSION" => '1.0',
|
14 |
"INFO_WING_VERSION" => '1.0',
|
15 |
"WATCH_WING_VERSION" => '1.0',
|
callback/handler.php
CHANGED
@@ -92,6 +92,10 @@ if (!class_exists('BVCallbackHandler')) :
|
|
92 |
require_once dirname( __FILE__ ) . '/wings/actlog.php';
|
93 |
$module = new BVActLogCallback($this);
|
94 |
break;
|
|
|
|
|
|
|
|
|
95 |
default:
|
96 |
require_once dirname( __FILE__ ) . '/wings/misc.php';
|
97 |
$module = new BVMiscCallback($this);
|
92 |
require_once dirname( __FILE__ ) . '/wings/actlog.php';
|
93 |
$module = new BVActLogCallback($this);
|
94 |
break;
|
95 |
+
case 'speed':
|
96 |
+
require_once dirname( __FILE__ ) . '/wings/speed.php';
|
97 |
+
$module = new BVSpeedCallback($this);
|
98 |
+
break;
|
99 |
default:
|
100 |
require_once dirname( __FILE__ ) . '/wings/misc.php';
|
101 |
$module = new BVMiscCallback($this);
|
callback/wings/misc.php
CHANGED
@@ -11,7 +11,7 @@ class BVMiscCallback extends BVCallbackBase {
|
|
11 |
public $bvapi;
|
12 |
public $db;
|
13 |
|
14 |
-
const MISC_WING_VERSION = 1.
|
15 |
|
16 |
public function __construct($callback_handler) {
|
17 |
$this->settings = $callback_handler->settings;
|
@@ -49,7 +49,7 @@ class BVMiscCallback extends BVCallbackBase {
|
|
49 |
}
|
50 |
|
51 |
public function getWingInfo() {
|
52 |
-
return array('wing_info' => self
|
53 |
}
|
54 |
|
55 |
public function post_types_data($post_params) {
|
11 |
public $bvapi;
|
12 |
public $db;
|
13 |
|
14 |
+
const MISC_WING_VERSION = 1.1;
|
15 |
|
16 |
public function __construct($callback_handler) {
|
17 |
$this->settings = $callback_handler->settings;
|
49 |
}
|
50 |
|
51 |
public function getWingInfo() {
|
52 |
+
return array('wing_info' => self::$wing_infos);
|
53 |
}
|
54 |
|
55 |
public function post_types_data($post_params) {
|
info.php
CHANGED
@@ -10,7 +10,7 @@ if (!class_exists('MCInfo')) :
|
|
10 |
public $badgeinfo = 'mcbadge';
|
11 |
public $ip_header_option = 'mcipheader';
|
12 |
public $brand_option = 'mcbrand';
|
13 |
-
public $version = '4.
|
14 |
public $webpage = 'https://www.malcare.com';
|
15 |
public $appurl = 'https://app.malcare.com';
|
16 |
public $slug = 'malcare-security/malcare.php';
|
10 |
public $badgeinfo = 'mcbadge';
|
11 |
public $ip_header_option = 'mcipheader';
|
12 |
public $brand_option = 'mcbrand';
|
13 |
+
public $version = '4.68';
|
14 |
public $webpage = 'https://www.malcare.com';
|
15 |
public $appurl = 'https://app.malcare.com';
|
16 |
public $slug = 'malcare-security/malcare.php';
|
malcare.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: https://www.malcare.com
|
|
5 |
Description: MalCare Security - Free Malware Scanner, Protection & Security for WordPress
|
6 |
Author: MalCare Security
|
7 |
Author URI: https://www.malcare.com
|
8 |
-
Version: 4.
|
9 |
Network: True
|
10 |
*/
|
11 |
|
5 |
Description: MalCare Security - Free Malware Scanner, Protection & Security for WordPress
|
6 |
Author: MalCare Security
|
7 |
Author URI: https://www.malcare.com
|
8 |
+
Version: 4.68
|
9 |
Network: True
|
10 |
*/
|
11 |
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Donate link: https://www.malcare.com
|
|
6 |
Requires at least: 4.0
|
7 |
Tested up to: 5.8
|
8 |
Requires PHP: 5.4.0
|
9 |
-
Stable tag: 4.
|
10 |
License: GPLv2 or later
|
11 |
License URI: [http://www.gnu.org/licenses/gpl-2.0.html](http://www.gnu.org/licenses/gpl-2.0.html)
|
12 |
|
@@ -397,6 +397,9 @@ These are available on our website: [Terms of Service](https://www.malcare.com/t
|
|
397 |
8. MalCare’s Uptime Monitoring notifies if a website goes down so that you can handle the situation before starting to lose visitors.
|
398 |
|
399 |
== CHANGELOG ==
|
|
|
|
|
|
|
400 |
= 4.67 =
|
401 |
* Robust firewall-config checks
|
402 |
|
6 |
Requires at least: 4.0
|
7 |
Tested up to: 5.8
|
8 |
Requires PHP: 5.4.0
|
9 |
+
Stable tag: 4.68
|
10 |
License: GPLv2 or later
|
11 |
License URI: [http://www.gnu.org/licenses/gpl-2.0.html](http://www.gnu.org/licenses/gpl-2.0.html)
|
12 |
|
397 |
8. MalCare’s Uptime Monitoring notifies if a website goes down so that you can handle the situation before starting to lose visitors.
|
398 |
|
399 |
== CHANGELOG ==
|
400 |
+
= 4.68 =
|
401 |
+
* Removing use of constants for arrays for PHP 5.4 support.
|
402 |
+
|
403 |
= 4.67 =
|
404 |
* Robust firewall-config checks
|
405 |
|