Update Control - Version 1.1.1

Version Description

  • Bugfix. Correct variable name typo
Download this release

Release Info

Developer chipbennett
Plugin Icon wp plugin Update Control
Version 1.1.1
Comparing to
See all releases

Code changes from version 1.1 to 1.1.1

Files changed (2) hide show
  1. readme.txt +4 -1
  2. update-control.php +2 -2
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: georgestephanis, chipbennett
3
  Tags: automatic updates, updates
4
  Requires at least: 3.7
5
  Tested up to: 3.7
6
- Stable tag: 1.1
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -15,6 +15,9 @@ This plugin adds some options to your Settings > General page, letting you speci
15
 
16
  == Changelog ==
17
 
 
 
 
18
  = 1.1 =
19
  * Update for WordPress 3.7 final, add update email options.
20
 
3
  Tags: automatic updates, updates
4
  Requires at least: 3.7
5
  Tested up to: 3.7
6
+ Stable tag: 1.1.1
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
15
 
16
  == Changelog ==
17
 
18
+ = 1.1.1 =
19
+ * Bugfix. Correct variable name typo
20
+
21
  = 1.1 =
22
  * Update for WordPress 3.7 final, add update email options.
23
 
update-control.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin URI: http://github.com/georgestephanis/update-control/
5
  * Description: Adds a manual toggle to the WordPress Admin Interface for managing auto-updates.
6
  * Author: George Stephanis
7
- * Version: 1.1
8
  * Author URI: http://stephanis.info/
9
  */
10
 
@@ -28,7 +28,7 @@ class Stephanis_Update_Control {
28
  } else {
29
 
30
  if ( in_array( $options['core'], array( 'dev', 'major', 'minor' ) ) ) {
31
- add_filter( 'allow_' . $option['core'] . '_auto_core_updates', '__return_true', 1 );
32
  }
33
 
34
  if ( $options['plugin'] ) {
4
  * Plugin URI: http://github.com/georgestephanis/update-control/
5
  * Description: Adds a manual toggle to the WordPress Admin Interface for managing auto-updates.
6
  * Author: George Stephanis
7
+ * Version: 1.1.1
8
  * Author URI: http://stephanis.info/
9
  */
10
 
28
  } else {
29
 
30
  if ( in_array( $options['core'], array( 'dev', 'major', 'minor' ) ) ) {
31
+ add_filter( 'allow_' . $options['core'] . '_auto_core_updates', '__return_true', 1 );
32
  }
33
 
34
  if ( $options['plugin'] ) {