From c9ea1de1441bb3bda133bf72d513ca9de66566c2 Mon Sep 17 00:00:00 2001 From: Dominik Schilling Date: Wed, 11 Jan 2017 10:37:48 +0000 Subject: [PATCH] Updates: Translate plugin data on the Updates screen. Built from https://develop.svn.wordpress.org/trunk@39808 git-svn-id: http://core.svn.wordpress.org/trunk@39746 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/update-core.php | 2 ++ wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/wp-admin/update-core.php b/wp-admin/update-core.php index c6c21ead5c..a0801b9bad 100644 --- a/wp-admin/update-core.php +++ b/wp-admin/update-core.php @@ -250,6 +250,8 @@ function list_plugin_updates() { $plugin_data ) { + $plugin_data = (object) _get_plugin_data_markup_translate( $plugin_file, (array) $plugin_data, false, true ); + // Get plugin compat for running version of WordPress. if ( isset($plugin_data->update->tested) && version_compare($plugin_data->update->tested, $cur_wp_version, '>=') ) { $compat = '
' . sprintf(__('Compatibility with WordPress %1$s: 100%% (according to its author)'), $cur_wp_version); diff --git a/wp-includes/version.php b/wp-includes/version.php index 7bc1c226d2..f342b0d290 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.8-alpha-39807'; +$wp_version = '4.8-alpha-39808'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.