diff --git a/update-core.php /src/wp-admin/update-core.php
index dff5b84..61527bf 100755
old
|
new
|
foreach ( (array) $plugins as $plugin_file => $plugin_data ) { |
275 | 275 | |
276 | 276 | // Get plugin compat for running version of WordPress. |
277 | 277 | if ( isset( $plugin_data->update->tested ) && version_compare( $plugin_data->update->tested, $cur_wp_version, '>=' ) ) { |
278 | | $compat = '<br />' . sprintf( __( 'Compatibility with WordPress %1$s: Compatible (according to its author)' ), $cur_wp_version ); |
| 278 | $compat = '<br />' . sprintf( __( 'Compatibility with WordPress %1$s: 100%% (according to its author)' ), $cur_wp_version ); |
279 | 279 | } else { |
280 | 280 | $compat = '<br />' . sprintf( __( 'Compatibility with WordPress %1$s: Unknown' ), $cur_wp_version ); |
281 | 281 | } |
282 | 282 | // Get plugin compat for updated version of WordPress. |
283 | 283 | if ( $core_update_version ) { |
284 | 284 | if ( isset( $plugin_data->update->tested ) && version_compare( $plugin_data->update->tested, $core_update_version, '>=' ) ) { |
285 | | $compat .= '<br />' . sprintf( __( 'Compatibility with WordPress %1$s: Compatible (according to its author)' ), $core_update_version ); |
| 285 | $compat .= '<br />' . sprintf( __( 'Compatibility with WordPress %1$s: 100%% (according to its author)' ), $core_update_version ); |
286 | 286 | } else { |
287 | 287 | $compat .= '<br />' . sprintf( __( 'Compatibility with WordPress %1$s: Unknown' ), $core_update_version ); |
288 | 288 | } |