Version Description
Released 2016-06-27
- Bug Fix: Quick links in plugin and themes tab weren't working.
Download this release
Release Info
| Developer | ronalfy |
| Plugin | |
| Version | 6.1.5 |
| Comparing to | |
| See all releases | |
Code changes from version 6.1.3 to 6.1.5
- includes/MPSUM_Admin_Plugins.php +1 -1
- includes/MPSUM_Admin_Themes.php +2 -1
- main.php +1 -1
- readme.txt +10 -23
includes/MPSUM_Admin_Plugins.php
CHANGED
|
@@ -81,7 +81,7 @@ class MPSUM_Admin_Plugins {
|
|
| 81 |
if ( !current_user_can( 'update_plugins' ) ) return;
|
| 82 |
if ( !isset( $_GET[ 'page' ] ) || $_GET[ 'page' ] != $this->slug ) return;
|
| 83 |
if ( !isset( $_GET[ 'tab' ] ) || $_GET[ 'tab' ] != $this->tab ) return;
|
| 84 |
-
if ( !isset( $_REQUEST[ 'action' ] )
|
| 85 |
if ( !isset( $_REQUEST[ '_mpsum' ] ) ) return;
|
| 86 |
|
| 87 |
if ( isset( $_REQUEST['action'] ) && -1 != $_REQUEST[ 'action' ] )
|
| 81 |
if ( !current_user_can( 'update_plugins' ) ) return;
|
| 82 |
if ( !isset( $_GET[ 'page' ] ) || $_GET[ 'page' ] != $this->slug ) return;
|
| 83 |
if ( !isset( $_GET[ 'tab' ] ) || $_GET[ 'tab' ] != $this->tab ) return;
|
| 84 |
+
if ( !isset( $_REQUEST[ 'action' ] ) && ! isset( $_REQUEST[ 'action2' ] ) ) return;
|
| 85 |
if ( !isset( $_REQUEST[ '_mpsum' ] ) ) return;
|
| 86 |
|
| 87 |
if ( isset( $_REQUEST['action'] ) && -1 != $_REQUEST[ 'action' ] )
|
includes/MPSUM_Admin_Themes.php
CHANGED
|
@@ -82,7 +82,7 @@ class MPSUM_Admin_Themes {
|
|
| 82 |
if ( !current_user_can( 'update_themes' ) ) return;
|
| 83 |
if ( !isset( $_GET[ 'page' ] ) || $_GET[ 'page' ] != $this->slug ) return;
|
| 84 |
if ( !isset( $_GET[ 'tab' ] ) || $_GET[ 'tab' ] != $this->tab ) return;
|
| 85 |
-
if ( !isset( $_REQUEST[ 'action' ] )
|
| 86 |
if ( !isset( $_REQUEST[ '_mpsum' ] ) ) return;
|
| 87 |
|
| 88 |
if ( isset( $_REQUEST['action'] ) && -1 != $_REQUEST[ 'action' ] )
|
|
@@ -90,6 +90,7 @@ class MPSUM_Admin_Themes {
|
|
| 90 |
|
| 91 |
if ( isset( $_REQUEST[ 'action2' ] ) && -1 != $_REQUEST[ 'action2' ] )
|
| 92 |
$action = $_REQUEST[ 'action2' ];
|
|
|
|
| 93 |
|
| 94 |
//Build Query Args
|
| 95 |
$paged = isset( $_GET[ 'paged' ] ) ? absint( $_GET[ 'paged' ] ) : false;
|
| 82 |
if ( !current_user_can( 'update_themes' ) ) return;
|
| 83 |
if ( !isset( $_GET[ 'page' ] ) || $_GET[ 'page' ] != $this->slug ) return;
|
| 84 |
if ( !isset( $_GET[ 'tab' ] ) || $_GET[ 'tab' ] != $this->tab ) return;
|
| 85 |
+
if ( !isset( $_REQUEST[ 'action' ] ) && ! isset( $_REQUEST[ 'action2' ] ) ) return;
|
| 86 |
if ( !isset( $_REQUEST[ '_mpsum' ] ) ) return;
|
| 87 |
|
| 88 |
if ( isset( $_REQUEST['action'] ) && -1 != $_REQUEST[ 'action' ] )
|
| 90 |
|
| 91 |
if ( isset( $_REQUEST[ 'action2' ] ) && -1 != $_REQUEST[ 'action2' ] )
|
| 92 |
$action = $_REQUEST[ 'action2' ];
|
| 93 |
+
|
| 94 |
|
| 95 |
//Build Query Args
|
| 96 |
$paged = isset( $_GET[ 'paged' ] ) ? absint( $_GET[ 'paged' ] ) : false;
|
main.php
CHANGED
|
@@ -4,7 +4,7 @@ Plugin Name: Easy Updates Manager
|
|
| 4 |
Plugin URI: https://wordpress.org/plugins/stops-core-theme-and-plugin-updates/
|
| 5 |
Description: Manage and disable WordPress updates, including core, plugin, theme, and automatic updates - Works with Multisite and has built-in logging features.
|
| 6 |
Author: Easy Updates Manager Team
|
| 7 |
-
Version: 6.1.
|
| 8 |
Requires at least: 4.4
|
| 9 |
Author URI: https://wordpress.org/plugins/stops-core-theme-and-plugin-updates/
|
| 10 |
Contributors: kidsguide, ronalfy
|
| 4 |
Plugin URI: https://wordpress.org/plugins/stops-core-theme-and-plugin-updates/
|
| 5 |
Description: Manage and disable WordPress updates, including core, plugin, theme, and automatic updates - Works with Multisite and has built-in logging features.
|
| 6 |
Author: Easy Updates Manager Team
|
| 7 |
+
Version: 6.1.5
|
| 8 |
Requires at least: 4.4
|
| 9 |
Author URI: https://wordpress.org/plugins/stops-core-theme-and-plugin-updates/
|
| 10 |
Contributors: kidsguide, ronalfy
|
readme.txt
CHANGED
|
@@ -3,7 +3,7 @@ Contributors: kidsguide, ronalfy, roary86, bigwing
|
|
| 3 |
Tags: updates manager, easy updates manager, disable updates manager, disable updates, update control, plugin updates, theme updates, core updates, automatic updates, multisite, logs
|
| 4 |
Requires at least: 4.4
|
| 5 |
Tested up to: 4.5
|
| 6 |
-
Stable tag: 6.1.
|
| 7 |
License: GPLv2 or later
|
| 8 |
Donate link: https://mediaron.com/contribute/
|
| 9 |
|
|
@@ -103,6 +103,11 @@ For additional information and FAQs for Easy Updates Manager check out our <a hr
|
|
| 103 |
|
| 104 |
== Changelog ==
|
| 105 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 106 |
= 6.1.3 =
|
| 107 |
Released 2016-06-21
|
| 108 |
|
|
@@ -226,26 +231,8 @@ In version 5.0.0 we completely re-wrote the plugin to offer a faster and more se
|
|
| 226 |
|
| 227 |
== Upgrade Notice ==
|
| 228 |
|
| 229 |
-
= 6.1.
|
| 230 |
-
Bug
|
| 231 |
-
|
| 232 |
-
= 6.1.1 =
|
| 233 |
-
Fixed bulk action issue for bottom options in plugins and themes tab.
|
| 234 |
-
|
| 235 |
-
= 6.1.0 =
|
| 236 |
-
Filters for logs. Can now change email address for automatic updates.
|
| 237 |
-
|
| 238 |
-
= 6.0.5 =
|
| 239 |
-
New filter `mpsum_default_options`. Style fixes for list views.
|
| 240 |
|
| 241 |
-
= 6.
|
| 242 |
-
|
| 243 |
-
|
| 244 |
-
= 6.0.1 =
|
| 245 |
-
Bug fix: Resetting options and enabling logs does not enable logging.
|
| 246 |
-
|
| 247 |
-
= 6.0.0 =
|
| 248 |
-
LOGS! A highly requested feature is now here. Please keep in mind we consider logs still in beta
|
| 249 |
-
|
| 250 |
-
= 5.4.5 =
|
| 251 |
-
Dashboard improvements and multisite fixes
|
| 3 |
Tags: updates manager, easy updates manager, disable updates manager, disable updates, update control, plugin updates, theme updates, core updates, automatic updates, multisite, logs
|
| 4 |
Requires at least: 4.4
|
| 5 |
Tested up to: 4.5
|
| 6 |
+
Stable tag: 6.1.5
|
| 7 |
License: GPLv2 or later
|
| 8 |
Donate link: https://mediaron.com/contribute/
|
| 9 |
|
| 103 |
|
| 104 |
== Changelog ==
|
| 105 |
|
| 106 |
+
= 6.1.5 =
|
| 107 |
+
Released 2016-06-27
|
| 108 |
+
|
| 109 |
+
* Bug Fix: Quick links in plugin and themes tab weren't working.
|
| 110 |
+
|
| 111 |
= 6.1.3 =
|
| 112 |
Released 2016-06-21
|
| 113 |
|
| 231 |
|
| 232 |
== Upgrade Notice ==
|
| 233 |
|
| 234 |
+
= 6.1.5 =
|
| 235 |
+
Bug Fix: Quick links in plugin and themes tab weren't working.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 236 |
|
| 237 |
+
= 6.1.3 =
|
| 238 |
+
Bug fix: email addresses for background updates were not working for non-core updates.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
