Make WordPress Core

Changeset 46508


Ignore:
Timestamp:
10/14/2019 08:04:11 PM (5 years ago)
Author:
desrosj
Message:

WordPress 5.2.4.

Location:
branches/5.2/src
Files:
2 edited

Legend:

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

    r46046 r46508  
    5454                <?php
    5555                printf(
    56                     /* translators: 1: WordPress version number, 2: plural number of bugs. More than one security issue. */
     56                    /* translators: %s: WordPress version number */
     57                    __( '<strong>Version %s</strong> addressed some security issues.' ),
     58                    '5.2.4'
     59                );
     60                ?>
     61                <?php
     62                printf(
     63                /* translators: %s: HelpHub URL */
     64                    __( 'For more information, see <a href="%s">the release notes</a>.' ),
     65                    sprintf(
     66                    /* translators: %s: WordPress version */
     67                        esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
     68                        sanitize_title( '5.2.4' )
     69                    )
     70                );
     71                ?>
     72            </p>
     73            <p>
     74                <?php
     75                printf(
     76                /* translators: 1: WordPress version number, 2: plural number of bugs. More than one security issue. */
    5777                    _n(
    5878                        '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.',
     
    6686                <?php
    6787                printf(
    68                     /* translators: %s: HelpHub URL */
     88                /* translators: %s: HelpHub URL */
    6989                    __( 'For more information, see <a href="%s">the release notes</a>.' ),
    7090                    sprintf(
    71                         /* translators: %s: WordPress version */
     91                    /* translators: %s: WordPress version */
    7292                        esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
    7393                        sanitize_title( '5.2.3' )
  • branches/5.2/src/wp-includes/version.php

    r46065 r46508  
    1414 * @global string $wp_version
    1515 */
    16 $wp_version = '5.2.4-alpha-46065-src';
     16$wp_version = '5.2.4-src';
    1717
    1818/**
Note: See TracChangeset for help on using the changeset viewer.