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