Make WordPress Core

Changeset 57959


Ignore:
Timestamp:
04/09/2024 02:07:20 PM (3 weeks ago)
Author:
johnbillion
Message:

WordPress 6.5.1.

Location:
branches/6.5/src
Files:
2 edited

Legend:

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

    r57872 r57959  
    4141            <a href="contribute.php" class="nav-tab"><?php _e( 'Get Involved' ); ?></a>
    4242        </nav>
     43
     44        <div class="about__section changelog has-subtle-background-color">
     45            <div class="column">
     46                <h2><?php _e( 'Maintenance and Security Release' ); ?></h2>
     47                <p>
     48                    <?php
     49                    printf(
     50                        /* translators: 1: WordPress version number, 2: Plural number of bugs. */
     51                        _n(
     52                            '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug.',
     53                            '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs.',
     54                            12
     55                        ),
     56                        '6.5.1',
     57                        '12'
     58                    );
     59                    ?>
     60                    <?php
     61                    printf(
     62                        /* translators: %s: HelpHub URL. */
     63                        __( 'For more information, see <a href="%s">the release notes</a>.' ),
     64                        sprintf(
     65                            /* translators: %s: WordPress version. */
     66                            esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
     67                            sanitize_title( '6.5.1' )
     68                        )
     69                    );
     70                    ?>
     71                </p>
     72            </div>
     73        </div>
    4374
    4475        <div class="about__section">
  • branches/6.5/src/wp-includes/version.php

    r57914 r57959  
    1717 * @global string $wp_version
    1818 */
    19 $wp_version = '6.5.1-alpha-57914-src';
     19$wp_version = '6.5.1-src';
    2020
    2121/**
Note: See TracChangeset for help on using the changeset viewer.