Version Description
- Post type fetch improvement.
- Handing wing version for ipstore wing.
Download this release
Release Info
Developer | ritesh.soni36 |
Plugin | MalCare WordPress Security Plugin – Malware Scanner, Cleaner, Security Firewall |
Version | 4.66 |
Comparing to | |
See all releases |
Code changes from version 4.65 to 4.66
- callback/wings/ipstore.php +2 -0
- callback/wings/misc.php +1 -1
- info.php +1 -1
- malcare.php +1 -1
- readme.txt +5 -1
callback/wings/ipstore.php
CHANGED
@@ -8,6 +8,8 @@ require_once dirname( __FILE__ ) . '/../../protect/wp/ipstore.php';
|
|
8 |
class BVIPStoreCallback extends BVCallbackBase {
|
9 |
public $db;
|
10 |
|
|
|
|
|
11 |
public function __construct($callback_handler) {
|
12 |
$this->db = $callback_handler->db;
|
13 |
}
|
8 |
class BVIPStoreCallback extends BVCallbackBase {
|
9 |
public $db;
|
10 |
|
11 |
+
const IPSTORE_WING_VERSION = 1.0;
|
12 |
+
|
13 |
public function __construct($callback_handler) {
|
14 |
$this->db = $callback_handler->db;
|
15 |
}
|
callback/wings/misc.php
CHANGED
@@ -68,7 +68,7 @@ class BVMiscCallback extends BVCallbackBase {
|
|
68 |
AND post_status='publish' ORDER BY post_date DESC ) AS posts GROUP BY post_type";
|
69 |
$posts = $this->db->getResult($post_query);
|
70 |
foreach ( $posts as $key => $post ) {
|
71 |
-
$posts[$key]['url'] = get_permalink($post);
|
72 |
}
|
73 |
$result['posts'] = $posts;
|
74 |
return $result;
|
68 |
AND post_status='publish' ORDER BY post_date DESC ) AS posts GROUP BY post_type";
|
69 |
$posts = $this->db->getResult($post_query);
|
70 |
foreach ( $posts as $key => $post ) {
|
71 |
+
$posts[$key]['url'] = get_permalink($post['ID']);
|
72 |
}
|
73 |
$result['posts'] = $posts;
|
74 |
return $result;
|
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.66';
|
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.66
|
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,10 @@ 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.65 =
|
401 |
* Making Login Protection more configurable.
|
402 |
* Robust handling of requests params.
|
6 |
Requires at least: 4.0
|
7 |
Tested up to: 5.8
|
8 |
Requires PHP: 5.4.0
|
9 |
+
Stable tag: 4.66
|
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.66 =
|
401 |
+
* Post type fetch improvement.
|
402 |
+
* Handing wing version for ipstore wing.
|
403 |
+
|
404 |
= 4.65 =
|
405 |
* Making Login Protection more configurable.
|
406 |
* Robust handling of requests params.
|