Make WordPress Core

Changeset 46514 for branches/4.6


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

WordPress 4.6.16.

Location:
branches/4.6
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/4.6/package.json

    r46040 r46514  
    11{
    22  "name": "WordPress",
    3   "version": "4.6.15",
     3  "version": "4.6.16",
    44  "description": "WordPress is web software you can use to create a beautiful website or blog.",
    55  "repository": {
  • branches/4.6/src/wp-admin/about.php

    r46040 r46514  
    6666                                        /* translators: %s: WordPress version number */
    6767                                        __( '<strong>Version %s</strong> addressed some security issues.' ),
    68                                         '4.6.15'
     68                                        '4.6.16'
    6969                                );
    7070                                ?>
     
    7474                                        __( 'For more information, see <a href="%s">the release notes</a>.' ),
    7575                                        sprintf(
    76                                                 /* translators: %s: WordPress version */
     76                                        /* translators: %s: WordPress version */
     77                                                esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
     78                                                sanitize_title( '4.6.16' )
     79                                        )
     80                                );
     81                                ?>
     82                        </p>
     83                        <p>
     84                                <?php
     85                                printf(
     86                                /* translators: %s: WordPress version number */
     87                                        __( '<strong>Version %s</strong> addressed some security issues.' ),
     88                                        '4.6.15'
     89                                );
     90                                ?>
     91                                <?php
     92                                printf(
     93                                /* translators: %s: HelpHub URL */
     94                                        __( 'For more information, see <a href="%s">the release notes</a>.' ),
     95                                        sprintf(
     96                                        /* translators: %s: WordPress version */
    7797                                                esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
    7898                                                sanitize_title( '4.6.15' )
  • branches/4.6/src/wp-includes/version.php

    r46040 r46514  
    55 * @global string $wp_version
    66 */
    7 $wp_version = '4.6.15-src';
     7$wp_version = '4.6.16-src';
    88
    99/**
Note: See TracChangeset for help on using the changeset viewer.