Make WordPress Core

Changeset 46513


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

WordPress 4.7.15.

Location:
branches/4.7
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/4.7/package.json

    r46041 r46513  
    11{
    22  "name": "WordPress",
    3   "version": "4.7.14",
     3  "version": "4.7.15",
    44  "description": "WordPress is web software you can use to create a beautiful website or blog.",
    55  "repository": {
  • branches/4.7/src/wp-admin/about.php

    r46041 r46513  
    4949                <?php
    5050                printf(
    51                     /* translators: %s: WordPress version number */
     51                /* translators: %s: WordPress version number */
     52                    __( '<strong>Version %s</strong> addressed some security issues.' ),
     53                    '4.7.15'
     54                );
     55                ?>
     56                <?php
     57                printf(
     58                /* translators: %s: HelpHub URL */
     59                    __( 'For more information, see <a href="%s">the release notes</a>.' ),
     60                    sprintf(
     61                    /* translators: %s: WordPress version */
     62                        esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
     63                        sanitize_title( '4.7.15' )
     64                    )
     65                );
     66                ?>
     67            </p>
     68            <p>
     69                <?php
     70                printf(
     71                /* translators: %s: WordPress version number */
    5272                    __( '<strong>Version %s</strong> addressed some security issues.' ),
    5373                    '4.7.14'
     
    5676                <?php
    5777                printf(
    58                     /* translators: %s: HelpHub URL */
     78                /* translators: %s: HelpHub URL */
    5979                    __( 'For more information, see <a href="%s">the release notes</a>.' ),
    6080                    sprintf(
    61                         /* translators: %s: WordPress version */
     81                    /* translators: %s: WordPress version */
    6282                        esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
    6383                        sanitize_title( '4.7.14' )
  • branches/4.7/src/wp-includes/version.php

    r46041 r46513  
    55 * @global string $wp_version
    66 */
    7 $wp_version = '4.7.14-src';
     7$wp_version = '4.7.15-src';
    88
    99/**
Note: See TracChangeset for help on using the changeset viewer.