diff --git src/wp-admin/includes/update.php src/wp-admin/includes/update.php
index 943e19c..77b0f00 100644
|
|
function wp_plugin_update_row( $file, $plugin_data ) { |
325 | 325 | } else { |
326 | 326 | printf( __( 'There is a new version of %1$s available. <a href="%2$s" class="thickbox" title="%3$s">View version %4$s details</a> or <a href="%5$s" class="update-link">update now</a>.' ), $plugin_name, esc_url( $details_url ), esc_attr( $plugin_name ), $r->new_version, wp_nonce_url( self_admin_url( 'update.php?action=upgrade-plugin&plugin=' ) . $file, 'upgrade-plugin_' . $file ) ); |
327 | 327 | } |
| 328 | |
| 329 | if ( isset( $plugin_data['upgrade_notice'] ) ) { |
| 330 | echo '<br />' . strip_tags( $plugin_data->update->upgrade_notice ); |
| 331 | } |
| 332 | |
328 | 333 | /** |
329 | 334 | * Fires at the end of the update message container in each |
330 | 335 | * row of the plugins list table. |