From 0d65892e296ea0f837b32924f21cc215f0b2d7aa Mon Sep 17 00:00:00 2001 From: Dion Hulse Date: Mon, 9 Feb 2015 06:31:18 +0000 Subject: [PATCH] Updates: Display plugin update rows even for plugins which are not hosted by WordPress.org or the HTTP request times out on. See #29583. Fixes #30767 for trunk. git-svn-id: https://develop.svn.wordpress.org/trunk@31382 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/update-core.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/update-core.php b/src/wp-admin/update-core.php index 01d886d846..fe0078743c 100644 --- a/src/wp-admin/update-core.php +++ b/src/wp-admin/update-core.php @@ -242,7 +242,7 @@ function list_plugin_updates() { foreach ( (array) $plugins as $plugin_file => $plugin_data) { $info = plugins_api('plugin_information', array('slug' => $plugin_data->update->slug )); if ( is_wp_error( $info ) ) { - continue; + $info = false; } // Get plugin compat for running version of WordPress.