Updates: Translate plugin data on the Updates screen.
Merge of [39808] to the 4.0 branch. Built from https://develop.svn.wordpress.org/branches/4.0@39827 git-svn-id: http://core.svn.wordpress.org/branches/4.0@39765 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d8e0c202c5
commit
5fcb58d0cb
|
@ -240,6 +240,8 @@ function list_plugin_updates() {
|
|||
<tbody class="plugins">
|
||||
<?php
|
||||
foreach ( (array) $plugins as $plugin_file => $plugin_data) {
|
||||
$plugin_data = (object) _get_plugin_data_markup_translate( $plugin_file, (array) $plugin_data, false, true );
|
||||
|
||||
$info = plugins_api('plugin_information', array('slug' => $plugin_data->update->slug ));
|
||||
// Get plugin compat for running version of WordPress.
|
||||
if ( isset($info->tested) && version_compare($info->tested, $cur_wp_version, '>=') ) {
|
||||
|
|
Loading…
Reference in New Issue