From 24294b97e422f1092594fd504c78672842064340 Mon Sep 17 00:00:00 2001 From: Dion Hulse Date: Sat, 21 Sep 2013 09:33:12 +0000 Subject: [PATCH] Plugin Update API: Set the translations key to an empty array when the API is unavailable. Props rmmcue. See #18200 git-svn-id: https://develop.svn.wordpress.org/trunk@25544 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/update.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wp-includes/update.php b/src/wp-includes/update.php index 77091781ec..c3904ccae3 100644 --- a/src/wp-includes/update.php +++ b/src/wp-includes/update.php @@ -230,6 +230,7 @@ function wp_update_plugins() { $new_option->translations = $response['translations']; } else { $new_option->response = array(); + $new_option->translations = array(); } set_site_transient( 'update_plugins', $new_option );