Make WordPress Core

Changeset 52874


Ignore:
Timestamp:
03/10/2022 10:00:39 PM (3 years ago)
Author:
audrasjb
Message:

WordPress 5.9.2.

Location:
branches/5.9/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/5.9/src/wp-admin/about.php

    r52785 r52874  
    4242        <div class="about__section changelog">
    4343            <div class="column">
    44                 <h2><?php _e( 'Maintenance Release' ); ?></h2>
     44                <h2><?php _e( 'Maintenance and Security Releases' ); ?></h2>
     45                <p>
     46                    <?php
     47                    printf(
     48                        /* translators: 1: WordPress version number, 2: Plural number of bugs. More than one security issue. */
     49                        _n(
     50                            '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.',
     51                            '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.',
     52                            1
     53                        ),
     54                        '5.9.2',
     55                        number_format_i18n( 1 )
     56                    );
     57                    ?>
     58                    <?php
     59                    printf(
     60                        /* translators: %s: HelpHub URL. */
     61                        __( 'For more information, see <a href="%s">the release notes</a>.' ),
     62                        sprintf(
     63                            /* translators: %s: WordPress version. */
     64                            esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
     65                            sanitize_title( '5.9.2' )
     66                        )
     67                    );
     68                    ?>
     69                </p>
    4570                <p>
    4671                    <?php
  • branches/5.9/src/wp-includes/version.php

    r52788 r52874  
    1717 * @global string $wp_version
    1818 */
    19 $wp_version = '5.9.2-alpha-52788-src';
     19$wp_version = '5.9.2-src';
    2020
    2121/**
Note: See TracChangeset for help on using the changeset viewer.