Make WordPress Core

Ticket #50269: 50269.1.diff

File 50269.1.diff, 1.2 KB (added by audrasjb, 5 years ago)

Move the latest changes at the top of the changelog

  • src/wp-admin/about.php

    diff --git a/src/wp-admin/about.php b/src/wp-admin/about.php
    index 15b77d3a63..891c90600e 100644
    a b require_once ABSPATH . 'wp-admin/admin-header.php'; 
    4343                <div class="about__section changelog">
    4444                        <div class="column">
    4545                                <h2><?php _e( 'Maintenance and Security Releases' ); ?></h2>
     46                                <p>
     47                                        <?php
     48                                        printf(
     49                                                /* translators: 1: WordPress version number, 2: plural number of bugs. More than one security issue. */
     50                                                _n(
     51                                                        '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.',
     52                                                        '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.',
     53                                                        20
     54                                                ),
     55                                                '5.4.2',
     56                                                number_format_i18n( 20 )
     57                                        );
     58                                        ?>
     59                                        <?php
     60                                        printf(
     61                                                /* translators: %s: HelpHub URL */
     62                                                __( 'For more information, see <a href="%s">the release notes</a>.' ),
     63                                                sprintf(
     64                                                        /* translators: %s: WordPress version */
     65                                                        esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
     66                                                        sanitize_title( '5.4.2' )
     67                                                )
     68                                        );
     69                                        ?>
     70                                </p>
    4671                                <p>
    4772                                        <?php
    4873                                        printf(