Updates: Translate plugin data on the Updates screen.
Merge of [39808] to the 3.9 branch. Built from https://develop.svn.wordpress.org/branches/3.9@39828 git-svn-id: http://core.svn.wordpress.org/branches/3.9@39766 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d9f0c45795
commit
95c2ed6e0d
|
@ -238,6 +238,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