Version Description
- Fix: Resolved compatibility issue with WooCommerce payments
- Fix: Set plugin version for MU plugin loader
Download this release
Release Info
Developer | freediver |
Plugin | ManageWP Worker |
Version | 4.9.10 |
Comparing to | |
See all releases |
Code changes from version 4.9.9 to 4.9.10
- init.php +3 -3
- readme.txt +4 -0
- src/MMB/Core.php +1 -0
- src/MWP/WordPress/Context.php +5 -1
- version +2 -2
init.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: ManageWP - Worker
|
4 |
Plugin URI: https://managewp.com
|
5 |
Description: We help you efficiently manage all your WordPress websites. <strong>Updates, backups, 1-click login, migrations, security</strong> and more, on one dashboard. This service comes in two versions: standalone <a href="https://managewp.com">ManageWP</a> service that focuses on website management, and <a href="https://godaddy.com/pro">GoDaddy Pro</a> that includes additional tools for hosting, client management, lead generation, and more.
|
6 |
-
Version: 4.9.
|
7 |
Author: GoDaddy
|
8 |
Author URI: https://godaddy.com
|
9 |
License: GPL2
|
@@ -568,8 +568,8 @@ if (!function_exists('mwp_init')):
|
|
568 |
// reason (eg. the site can't ping itself). Handle that case early.
|
569 |
register_activation_hook(__FILE__, 'mwp_activation_hook');
|
570 |
|
571 |
-
$GLOBALS['MMB_WORKER_VERSION'] = '4.9.
|
572 |
-
$GLOBALS['MMB_WORKER_REVISION'] = '2021-
|
573 |
|
574 |
// Ensure PHP version compatibility.
|
575 |
if (version_compare(PHP_VERSION, '5.2', '<')) {
|
3 |
Plugin Name: ManageWP - Worker
|
4 |
Plugin URI: https://managewp.com
|
5 |
Description: We help you efficiently manage all your WordPress websites. <strong>Updates, backups, 1-click login, migrations, security</strong> and more, on one dashboard. This service comes in two versions: standalone <a href="https://managewp.com">ManageWP</a> service that focuses on website management, and <a href="https://godaddy.com/pro">GoDaddy Pro</a> that includes additional tools for hosting, client management, lead generation, and more.
|
6 |
+
Version: 4.9.10
|
7 |
Author: GoDaddy
|
8 |
Author URI: https://godaddy.com
|
9 |
License: GPL2
|
568 |
// reason (eg. the site can't ping itself). Handle that case early.
|
569 |
register_activation_hook(__FILE__, 'mwp_activation_hook');
|
570 |
|
571 |
+
$GLOBALS['MMB_WORKER_VERSION'] = '4.9.10';
|
572 |
+
$GLOBALS['MMB_WORKER_REVISION'] = '2021-09-08 00:00:00';
|
573 |
|
574 |
// Ensure PHP version compatibility.
|
575 |
if (version_compare(PHP_VERSION, '5.2', '<')) {
|
readme.txt
CHANGED
@@ -55,6 +55,10 @@ Check out the [ManageWP promo video](https://vimeo.com/220647227).
|
|
55 |
https://vimeo.com/220647227
|
56 |
|
57 |
== Changelog ==
|
|
|
|
|
|
|
|
|
58 |
= 4.9.9 =
|
59 |
|
60 |
- Fix: Resolved edge case compatibility issue with some sites
|
55 |
https://vimeo.com/220647227
|
56 |
|
57 |
== Changelog ==
|
58 |
+
= 4.9.10 =
|
59 |
+
- Fix: Resolved compatibility issue with WooCommerce payments
|
60 |
+
- Fix: Set plugin version for MU plugin loader
|
61 |
+
|
62 |
= 4.9.9 =
|
63 |
|
64 |
- Fix: Resolved edge case compatibility issue with some sites
|
src/MMB/Core.php
CHANGED
@@ -159,6 +159,7 @@ Plugin Name: ManageWP - Worker Loader
|
|
159 |
Plugin URI: https://managewp.com
|
160 |
Description: This is automatically generated by the ManageWP Worker plugin to increase performance and reliability. It is automatically disabled when disabling the main plugin.
|
161 |
Author: GoDaddy
|
|
|
162 |
Author URI: https://godaddy.com
|
163 |
License: GPL2
|
164 |
Network: true
|
159 |
Plugin URI: https://managewp.com
|
160 |
Description: This is automatically generated by the ManageWP Worker plugin to increase performance and reliability. It is automatically disabled when disabling the main plugin.
|
161 |
Author: GoDaddy
|
162 |
+
Version: 1.0.0
|
163 |
Author URI: https://godaddy.com
|
164 |
License: GPL2
|
165 |
Network: true
|
src/MWP/WordPress/Context.php
CHANGED
@@ -112,7 +112,11 @@ class MWP_WordPress_Context
|
|
112 |
*/
|
113 |
public function doAction($name, array $args = array())
|
114 |
{
|
115 |
-
|
|
|
|
|
|
|
|
|
116 |
}
|
117 |
|
118 |
/**
|
112 |
*/
|
113 |
public function doAction($name, array $args = array())
|
114 |
{
|
115 |
+
if ($name == 'admin_init') {
|
116 |
+
do_action($name);
|
117 |
+
} else {
|
118 |
+
do_action($name, $args);
|
119 |
+
}
|
120 |
}
|
121 |
|
122 |
/**
|
version
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
-
4.9.
|
2 |
-
2021-
|
1 |
+
4.9.10
|
2 |
+
2021-09-08 00:00:00
|