Make WordPress Core

Changeset 44860


Ignore:
Timestamp:
03/13/2019 12:16:04 AM (5 years ago)
Author:
pento
Message:

WordPress 5.1.1

Location:
branches/5.1/src
Files:
2 edited

Legend:

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

    r44770 r44860  
    3434            <a href="freedoms.php?privacy-notice" class="nav-tab"><?php _e( 'Privacy' ); ?></a>
    3535        </h2>
     36
     37        <div class="changelog point-releases">
     38            <h3><?php _e( 'Maintenance and Security Releases' ); ?></h3>
     39            <p>
     40                <?php
     41                printf(
     42                    /* translators: 1: WordPress version number, 2: plural number of bugs. */
     43                    _n(
     44                        '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.',
     45                        '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.',
     46                        14
     47                    ),
     48                    '5.1.1',
     49                    number_format_i18n( 14 )
     50                );
     51                ?>
     52                <?php
     53                printf(
     54                    /* translators: %s: HelpHub URL */
     55                    __( 'For more information, see <a href="%s">the release notes</a>.' ),
     56                    sprintf(
     57                        /* translators: %s: WordPress version */
     58                        esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
     59                        sanitize_title( '5.1.1' )
     60                    )
     61                );
     62                ?>
     63            </p>
     64        </div>
    3665
    3766        <h2 class="feature-section-header"><?php _e( 'A Little Better Every Day' ); ?></h2>
  • branches/5.1/src/wp-includes/version.php

    r44820 r44860  
    1414 * @global string $wp_version
    1515 */
    16 $wp_version = '5.1.1-RC1-44820-src';
     16$wp_version = '5.1.1-src';
    1717
    1818/**
Note: See TracChangeset for help on using the changeset viewer.