Make WordPress Core

Changeset 57463 for branches/6.4


Ignore:
Timestamp:
01/30/2024 07:08:26 PM (8 months ago)
Author:
joemcgill
Message:

WordPress 6.4.3.

Location:
branches/6.4/src
Files:
2 edited

Legend:

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

    r57165 r57463  
    4747            <div class="column">
    4848                <h2><?php _e( 'Maintenance and Security Releases' ); ?></h2>
     49                <p>
     50                    <?php
     51                    printf(
     52                        /* translators: 1: WordPress version number, 2: Plural number of bugs. */
     53                        _n(
     54                            '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.',
     55                            '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.',
     56                            21
     57                        ),
     58                        '6.4.3',
     59                        '21'
     60                    );
     61                    ?>
     62                    <?php
     63                    printf(
     64                        /* translators: %s: HelpHub URL. */
     65                        __( 'For more information, see <a href="%s">the release notes</a>.' ),
     66                        sprintf(
     67                            /* translators: %s: WordPress version. */
     68                            esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
     69                            sanitize_title( '6.4.3' )
     70                        )
     71                    );
     72                    ?>
     73                </p>
     74
     75                <p>
     76                    <?php
     77                    printf(
     78                        /* translators: 1: WordPress version number, 2: Plural number of bugs. */
     79                        _n(
     80                            '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug.',
     81                            '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs.',
     82                            7
     83                        ),
     84                        '6.4.2',
     85                        '7'
     86                    );
     87                    ?>
     88                    <?php
     89                    printf(
     90                        /* translators: %s: HelpHub URL. */
     91                        __( 'For more information, see <a href="%s">the release notes</a>.' ),
     92                        sprintf(
     93                            /* translators: %s: WordPress version. */
     94                            esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
     95                            sanitize_title( '6.4.2' )
     96                        )
     97                    );
     98                    ?>
     99                </p>
     100
    49101                <p>
    50102                    <?php
     
    68120                            esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
    69121                            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' )
    95122                        )
    96123                    );
  • branches/6.4/src/wp-includes/version.php

    r57360 r57463  
    1717 * @global string $wp_version
    1818 */
    19 $wp_version = '6.4.3-alpha-57360-src';
     19$wp_version = '6.4.3-src';
    2020
    2121/**
Note: See TracChangeset for help on using the changeset viewer.