Version Description
- New interface
- SSL security protocl
- many more
Download this release
Release Info
Developer | freediver |
Plugin | ManageWP Worker |
Version | 3.8.1 |
Comparing to | |
See all releases |
Code changes from version 3.8.0 to 3.8.1
- init.php +2 -2
- plugin.class.php +2 -2
- readme.txt +1 -1
- theme.class.php +2 -2
- version +1 -1
init.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: ManageWP - Worker
|
|
4 |
Plugin URI: http://managewp.com/
|
5 |
Description: Manage all your blogs from one dashboard
|
6 |
Author: Prelovac Media
|
7 |
-
Version: 3.8.
|
8 |
Author URI: http://www.prelovac.com
|
9 |
*/
|
10 |
|
@@ -13,7 +13,7 @@ if ($_SERVER['REMOTE_ADDR'] != '127.0.0.1') {
|
|
13 |
error_reporting(E_ERROR);
|
14 |
}
|
15 |
|
16 |
-
define('MMB_WORKER_VERSION', '3.8.
|
17 |
|
18 |
global $wpdb, $mmb_plugin_dir, $mmb_plugin_url;
|
19 |
|
4 |
Plugin URI: http://managewp.com/
|
5 |
Description: Manage all your blogs from one dashboard
|
6 |
Author: Prelovac Media
|
7 |
+
Version: 3.8.1
|
8 |
Author URI: http://www.prelovac.com
|
9 |
*/
|
10 |
|
13 |
error_reporting(E_ERROR);
|
14 |
}
|
15 |
|
16 |
+
define('MMB_WORKER_VERSION', '3.8.1');
|
17 |
|
18 |
global $wpdb, $mmb_plugin_dir, $mmb_plugin_url;
|
19 |
|
plugin.class.php
CHANGED
@@ -37,9 +37,9 @@ class MMB_Plugin extends MMB_Core
|
|
37 |
foreach ($result as $plugin_slug => $plugin_info) {
|
38 |
$data = get_plugin_data(WP_PLUGIN_DIR . '/' . $plugin_slug);
|
39 |
if(!$plugin_info || is_wp_error($plugin_info)){
|
40 |
-
$return .= '<code title="Please
|
41 |
}else{
|
42 |
-
$return .= '<code>' . $data['Name'] . '</code> successfully upgraded
|
43 |
}
|
44 |
}
|
45 |
ob_end_clean();
|
37 |
foreach ($result as $plugin_slug => $plugin_info) {
|
38 |
$data = get_plugin_data(WP_PLUGIN_DIR . '/' . $plugin_slug);
|
39 |
if(!$plugin_info || is_wp_error($plugin_info)){
|
40 |
+
$return .= '<code title="Please upgrade manually">' . $data['Name'] . '</code> was not upgraded.<br />';
|
41 |
}else{
|
42 |
+
$return .= '<code>' . $data['Name'] . '</code> successfully upgraded.<br />';
|
43 |
}
|
44 |
}
|
45 |
ob_end_clean();
|
readme.txt
CHANGED
@@ -25,7 +25,7 @@ Check out [ManageWP.com](http://managewp.com/ "Manage Multiple Blogs")
|
|
25 |
|
26 |
== Changelog ==
|
27 |
|
28 |
-
= 3.8.
|
29 |
* New interface
|
30 |
* SSL security protocl
|
31 |
* many more
|
25 |
|
26 |
== Changelog ==
|
27 |
|
28 |
+
= 3.8.1 =
|
29 |
* New interface
|
30 |
* SSL security protocl
|
31 |
* many more
|
theme.class.php
CHANGED
@@ -58,10 +58,10 @@ class MMB_Theme extends MMB_Core
|
|
58 |
if(!empty($result)){
|
59 |
foreach($result as $theme_tmp => $info){
|
60 |
if(is_wp_error($info) || !$info){
|
61 |
-
$results[$theme_tmp] = '<code title="Please
|
62 |
}
|
63 |
else {
|
64 |
-
$results[$theme_tmp] = '<code>'.$theme_tmp.'</code> succesfully upgraded
|
65 |
}
|
66 |
}
|
67 |
return array('upgraded' => implode('', $results));
|
58 |
if(!empty($result)){
|
59 |
foreach($result as $theme_tmp => $info){
|
60 |
if(is_wp_error($info) || !$info){
|
61 |
+
$results[$theme_tmp] = '<code title="Please upgrade manually">'.$theme_tmp.'</code> was not upgraded.<br />';
|
62 |
}
|
63 |
else {
|
64 |
+
$results[$theme_tmp] = '<code>'.$theme_tmp.'</code> succesfully upgraded.<br />';
|
65 |
}
|
66 |
}
|
67 |
return array('upgraded' => implode('', $results));
|
version
CHANGED
@@ -1 +1 @@
|
|
1 |
-
3.8.
|
1 |
+
3.8.1
|