Easy Updates Manager - Version 6.1.1

Version Description

Released 2016-06-08

  • Fixed bulk action issue for bottom options in plugins and themes tab.
Download this release

Release Info

Developer ronalfy
Plugin Icon 128x128 Easy Updates Manager
Version 6.1.1
Comparing to
See all releases

Code changes from version 6.1.0 to 6.1.1

includes/MPSUM_Admin_Plugins.php CHANGED
@@ -81,10 +81,15 @@ 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' ] ) ) return;
85
  if ( !isset( $_REQUEST[ '_mpsum' ] ) ) return;
86
 
87
- $action = $_REQUEST[ 'action' ];
 
 
 
 
 
88
 
89
  //Build Query Args
90
  $paged = isset( $_GET[ 'paged' ] ) ? absint( $_GET[ 'paged' ] ) : false;
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' ] )
88
+ $action = $_REQUEST[ 'action' ];
89
+
90
+ if ( isset( $_REQUEST[ 'action2' ] ) && -1 != $_REQUEST[ 'action2' ] )
91
+ $action = $_REQUEST[ 'action2' ];
92
+
93
 
94
  //Build Query Args
95
  $paged = isset( $_GET[ 'paged' ] ) ? absint( $_GET[ 'paged' ] ) : false;
includes/MPSUM_Admin_Themes.php CHANGED
@@ -82,10 +82,14 @@ 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' ] ) ) return;
86
  if ( !isset( $_REQUEST[ '_mpsum' ] ) ) return;
87
 
88
- $action = $_REQUEST[ 'action' ];
 
 
 
 
89
 
90
  //Build Query Args
91
  $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' ] )
89
+ $action = $_REQUEST[ 'action' ];
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;
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.0
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.1
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.0
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.0 =
107
  Released 2016-05-30
108
 
@@ -216,11 +221,14 @@ In version 5.0.0 we completely re-wrote the plugin to offer a faster and more se
216
 
217
  == Upgrade Notice ==
218
 
 
 
 
219
  = 6.1.0 =
220
  Filters for logs. Can now change email address for automatic updates.
221
 
222
  = 6.0.5 =
223
- New filter mpsum_default_options. Style fixes for list views.
224
 
225
  = 6.0.3 =
226
  Allow translation logging for automatic updates. Fix PHP warning on plugins page in multisite.
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.1
7
  License: GPLv2 or later
8
  Donate link: https://mediaron.com/contribute/
9
 
103
 
104
  == Changelog ==
105
 
106
+ = 6.1.1 =
107
+ Released 2016-06-08
108
+
109
+ * Fixed bulk action issue for bottom options in plugins and themes tab.
110
+
111
  = 6.1.0 =
112
  Released 2016-05-30
113
 
221
 
222
  == Upgrade Notice ==
223
 
224
+ = 6.1.1 =
225
+ Fixed bulk action issue for bottom options in plugins and themes tab.
226
+
227
  = 6.1.0 =
228
  Filters for logs. Can now change email address for automatic updates.
229
 
230
  = 6.0.5 =
231
+ New filter `mpsum_default_options`. Style fixes for list views.
232
 
233
  = 6.0.3 =
234
  Allow translation logging for automatic updates. Fix PHP warning on plugins page in multisite.