diff --git a/update-core.php b/update-core-44090.php
index a876d0e..b6e17e1 100755
old
|
new
|
function list_plugin_updates() { |
354 | 354 | // Get plugin compat for running version of WordPress. |
355 | 355 | if ( isset( $plugin_data->update->tested ) && version_compare( $plugin_data->update->tested, $cur_wp_version, '>=' ) ) { |
356 | 356 | /* translators: %s: WordPress version. */ |
357 | | $compat = '<br />' . sprintf( __( 'Compatibility with WordPress %s: 100%% (according to its author)' ), $cur_wp_version ); |
| 357 | $compat = '<br />' . sprintf( __( 'Compatibility with WordPress %s: Compatible% (according to its author)' ), $cur_wp_version ); |
358 | 358 | } else { |
359 | 359 | /* translators: %s: WordPress version. */ |
360 | 360 | $compat = '<br />' . sprintf( __( 'Compatibility with WordPress %s: Unknown' ), $cur_wp_version ); |
… |
… |
function list_plugin_updates() { |
363 | 363 | if ( $core_update_version ) { |
364 | 364 | if ( isset( $plugin_data->update->tested ) && version_compare( $plugin_data->update->tested, $core_update_version, '>=' ) ) { |
365 | 365 | /* translators: %s: WordPress version. */ |
366 | | $compat .= '<br />' . sprintf( __( 'Compatibility with WordPress %s: 100%% (according to its author)' ), $core_update_version ); |
| 366 | $compat .= '<br />' . sprintf( __( 'Compatibility with WordPress %s: Compatible% (according to its author)' ), $core_update_version ); |
367 | 367 | } else { |
368 | 368 | /* translators: %s: WordPress version. */ |
369 | 369 | $compat .= '<br />' . sprintf( __( 'Compatibility with WordPress %s: Unknown' ), $core_update_version ); |