Make WordPress Core

Changeset 49447


Ignore:
Timestamp:
10/29/2020 08:00:58 PM (4 years ago)
Author:
desrosj
Message:

WordPress 5.5.2.

Props audrasjb.
Fixes #51649.

Location:
branches/5.5/src
Files:
2 edited

Legend:

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

    r48933 r49447  
    6565            <div class="column">
    6666                <h2><?php _e( 'Maintenance and Security Releases' ); ?></h2>
     67                <p>
     68                    <?php
     69                    printf(
     70                        /* translators: 1: WordPress version number, 2: plural number of bugs. More than one security issue. */
     71                        _n(
     72                            '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.',
     73                            '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.',
     74                            14
     75                        ),
     76                        '5.5.2',
     77                        number_format_i18n( 14 )
     78                    );
     79                    ?>
     80                    <?php
     81                    printf(
     82                        /* translators: %s: HelpHub URL */
     83                        __( 'For more information, see <a href="%s">the release notes</a>.' ),
     84                        sprintf(
     85                            /* translators: %s: WordPress version */
     86                            esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
     87                            sanitize_title( '5.5.2' )
     88                        )
     89                    );
     90                    ?>
     91                </p>
    6792                <p>
    6893                    <?php
  • branches/5.5/src/wp-includes/version.php

    r48936 r49447  
    1414 * @global string $wp_version
    1515 */
    16 $wp_version = '5.5.2-alpha-48936-src';
     16$wp_version = '5.5.2-src';
    1717
    1818/**
Note: See TracChangeset for help on using the changeset viewer.