Easy Theme and Plugin Upgrades - Version 1.0.1

Version Description

Download this release

Release Info

Developer chrisbliss18
Plugin Icon wp plugin Easy Theme and Plugin Upgrades
Version 1.0.1
Comparing to
See all releases

Code changes from version 1.0.0 to 1.0.1

Files changed (4) hide show
  1. history.txt +2 -0
  2. init.php +1 -1
  3. modify-installer.php +2 -1
  4. readme.txt +3 -2
history.txt CHANGED
@@ -1,2 +1,4 @@
1
  1.0.0 - 2011-07-06 - Chris Jean
2
  Release-ready
 
 
1
  1.0.0 - 2011-07-06 - Chris Jean
2
  Release-ready
3
+ 1.0.1 - 2011-09-28 - Chris Jean
4
+ Fixed an issue with running upgrades on multisite networks
init.php CHANGED
@@ -5,7 +5,7 @@ Plugin Name: Easy Theme and Plugin Upgrades
5
  Plugin URI: http://ithemes.com/
6
  Description: This plugin allows for installed themes to be upgraded by using the Appearance > Add New Themes > Upload feature of WordPress. Without this plugin, themes can only be installed using this method, requiring you to first delete the theme before installing the newer version. Now features the same easy upgrading for plugins via the Plugins > Add New > Upload page.
7
  Author: Chris Jean
8
- Version: 1.0.0
9
  Author URI: http://ithemes.com/
10
  */
11
 
5
  Plugin URI: http://ithemes.com/
6
  Description: This plugin allows for installed themes to be upgraded by using the Appearance > Add New Themes > Upload feature of WordPress. Without this plugin, themes can only be installed using this method, requiring you to first delete the theme before installing the newer version. Now features the same easy upgrading for plugins via the Plugins > Add New > Upload page.
7
  Author: Chris Jean
8
+ Version: 1.0.1
9
  Author URI: http://ithemes.com/
10
  */
11
 
modify-installer.php CHANGED
@@ -207,7 +207,8 @@ if ( ! class_exists( 'ETUModifyInstaller' ) ) {
207
 
208
 
209
  $this->_zip_url = $zip_url;
210
- add_action( 'admin_notices', array( &$this, 'show_message' ) );
 
211
  }
212
 
213
  function show_message() {
207
 
208
 
209
  $this->_zip_url = $zip_url;
210
+
211
+ add_action( 'all_admin_notices', array( &$this, 'show_message' ) );
212
  }
213
 
214
  function show_message() {
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: chrisbliss18
3
  Tags: upload, plugins, themes, upgrade
4
  Requires at least: 3.0
5
- Tested up to: 3.2
6
- Stable tag: 1.0.0
7
 
8
  This plugin allows for installed themes to be upgraded by using the Appearance Add New Themes > Upload feature of WordPress. Without this plugin, themes can only be installed using this method, requiring you to first delete the theme before installing the newer version. Now features the same easy upgrading for plugins via the Plugins > Add New > Upload page.
9
 
@@ -45,3 +45,4 @@ __Easy Theme and Plugin Upgrades__ was created to make the life of WordPress use
45
  == Version History ==
46
 
47
  * 1.0.0 - 2011-07-06 - Initial release version
 
2
  Contributors: chrisbliss18
3
  Tags: upload, plugins, themes, upgrade
4
  Requires at least: 3.0
5
+ Tested up to: 3.2.1
6
+ Stable tag: 1.0.1
7
 
8
  This plugin allows for installed themes to be upgraded by using the Appearance Add New Themes > Upload feature of WordPress. Without this plugin, themes can only be installed using this method, requiring you to first delete the theme before installing the newer version. Now features the same easy upgrading for plugins via the Plugins > Add New > Upload page.
9
 
45
  == Version History ==
46
 
47
  * 1.0.0 - 2011-07-06 - Initial release version
48
+ * 1.0.1 - 2011-09-28 - Fixed an issue with the "The site is being updated and will be back in a few minutes" message showing on the frontend of the site for a few minutes after an upgrade. This only happened on multisite networks.