The WP Remote WordPress Plugin - Version 2.0.8

Version Description

Download this release

Release Info

Developer willmot
Plugin Icon 128x128 The WP Remote WordPress Plugin
Version 2.0.8
Comparing to
See all releases

Code changes from version 2.0.7 to 2.0.8

Files changed (3) hide show
  1. plugin.php +1 -1
  2. readme.txt +1 -1
  3. wprp.plugins.php +8 -1
plugin.php CHANGED
@@ -3,7 +3,7 @@
3
  /*
4
  Plugin Name: WP Remote
5
  Description: Manage your WordPress site with <a href="https://wpremote.com/">WP Remote</a>. Deactivate to clear your API Key.
6
- Version: 2.0.7
7
  Author: Human Made Limited
8
  Author URI: http://hmn.md/
9
  */
3
  /*
4
  Plugin Name: WP Remote
5
  Description: Manage your WordPress site with <a href="https://wpremote.com/">WP Remote</a>. Deactivate to clear your API Key.
6
+ Version: 2.0.8
7
  Author: Human Made Limited
8
  Author URI: http://hmn.md/
9
  */
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: humanmade, joehoyle, mattheu, tcrsavage, willmot
3
  Tags: wpremote, remote administration, multiple wordpress
4
  Requires at least: 2.9
5
  Tested up to: 3.3.1
6
- Stable tag: 2.0.7
7
 
8
  WP Remote is a free web app that enables you to easily manage all of your WordPress powered sites from one place.
9
 
3
  Tags: wpremote, remote administration, multiple wordpress
4
  Requires at least: 2.9
5
  Tested up to: 3.3.1
6
+ Stable tag: 2.0.8
7
 
8
  WP Remote is a free web app that enables you to easily manage all of your WordPress powered sites from one place.
9
 
wprp.plugins.php CHANGED
@@ -14,7 +14,14 @@ function _wprp_get_plugins() {
14
 
15
  // Get the list of active plugins
16
  $active = get_option( 'active_plugins', array() );
17
-
 
 
 
 
 
 
 
18
  // Force a plugin update check
19
  wp_update_plugins();
20
 
14
 
15
  // Get the list of active plugins
16
  $active = get_option( 'active_plugins', array() );
17
+
18
+ // Delete the transient so wp_update_plugins can get fresh data
19
+ if ( function_exists( 'get_site_transient' ) )
20
+ delete_site_transient( 'update_plugins' );
21
+
22
+ else
23
+ delete_transient( 'update_plugins' );
24
+
25
  // Force a plugin update check
26
  wp_update_plugins();
27