diff --git a/wp-admin/includes/class-wp-plugin-install-list-table.php b/wp-admin/includes/class-wp-plugin-install-list-table.php
index 9c09a80a16..43eb75e690 100644
a
|
b
|
class WP_Plugin_Install_List_Table extends WP_List_Table { |
642 | 642 | self_admin_url( 'update-core.php' ), |
643 | 643 | esc_url( wp_get_update_php_url() ) |
644 | 644 | ); |
645 | | wp_update_php_annotation(); |
| 645 | wp_update_php_annotation( '<br><span class="description">', '</span>' ); |
646 | 646 | } elseif ( current_user_can( 'update_core' ) ) { |
647 | 647 | printf( |
648 | 648 | /* translators: %s: "Update WordPress" screen URL */ |
… |
… |
class WP_Plugin_Install_List_Table extends WP_List_Table { |
655 | 655 | ' ' . __( '<a href="%s">Learn more about updating PHP</a>.' ), |
656 | 656 | esc_url( wp_get_update_php_url() ) |
657 | 657 | ); |
658 | | wp_update_php_annotation(); |
| 658 | wp_update_php_annotation( '<br><span class="description">', '</span>' ); |
659 | 659 | } |
660 | 660 | } elseif ( ! $compatible_wp ) { |
661 | 661 | _e( 'This plugin doesn’t work with your version of WordPress.' ); |
… |
… |
class WP_Plugin_Install_List_Table extends WP_List_Table { |
674 | 674 | ' ' . __( '<a href="%s">Learn more about updating PHP</a>.' ), |
675 | 675 | esc_url( wp_get_update_php_url() ) |
676 | 676 | ); |
677 | | wp_update_php_annotation(); |
| 677 | wp_update_php_annotation( '<br><span class="description">', '</span>' ); |
678 | 678 | } |
679 | 679 | } |
680 | 680 | echo '</p></div>'; |
diff --git a/wp-admin/includes/plugin-install.php b/wp-admin/includes/plugin-install.php
index f2607cb9ef..5094446f36 100644
a
|
b
|
function install_plugin_information() { |
770 | 770 | esc_url( wp_get_update_php_url() ) |
771 | 771 | ); |
772 | 772 | echo '</p>'; |
773 | | wp_update_php_annotation(); |
| 773 | wp_update_php_annotation( '<span class="description">', '</span>' ); |
774 | 774 | } else { |
775 | 775 | echo '</p>'; |
776 | 776 | } |