Make WordPress Core

Changeset 57165


Ignore:
Timestamp:
12/06/2023 04:10:27 PM (14 months ago)
Author:
joemcgill
Message:

WordPress 6.4.2.

Location:
branches/6.4/src
Files:
2 edited

Legend:

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

    r57112 r57165  
    4646        <div class="about__section changelog has-subtle-background-color">
    4747            <div class="column">
    48                 <h2><?php _e( 'Maintenance Release' ); ?></h2>
     48                <h2><?php _e( 'Maintenance and Security Releases' ); ?></h2>
    4949                <p>
    5050                    <?php
     
    5454                            '<strong>Version %1$s</strong> addressed %2$s bug.',
    5555                            '<strong>Version %1$s</strong> addressed %2$s bugs.',
    56                             10
     56                            4
    5757                        ),
    5858                        '6.4.1',
     
    6868                            esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
    6969                            sanitize_title( '6.4.1' )
     70                        )
     71                    );
     72                    ?>
     73                </p>
     74                <p>
     75                    <?php
     76                    printf(
     77                        /* translators: 1: WordPress version number, 2: Plural number of bugs. */
     78                        _n(
     79                            '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug.',
     80                            '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs.',
     81                            7
     82                        ),
     83                        '6.4.2',
     84                        '7'
     85                    );
     86                    ?>
     87                    <?php
     88                    printf(
     89                        /* translators: %s: HelpHub URL. */
     90                        __( 'For more information, see <a href="%s">the release notes</a>.' ),
     91                        sprintf(
     92                            /* translators: %s: WordPress version. */
     93                            esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
     94                            sanitize_title( '6.4.2' )
    7095                        )
    7196                    );
  • branches/6.4/src/wp-includes/version.php

    r57098 r57165  
    1717 * @global string $wp_version
    1818 */
    19 $wp_version = '6.4.2-alpha-57098-src';
     19$wp_version = '6.4.2-src';
    2020
    2121/**
Note: See TracChangeset for help on using the changeset viewer.