Make WordPress Core

Changeset 46511


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

WordPress 4.9.12.

Location:
branches/4.9
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/4.9/package.json

    r46043 r46511  
    11{
    22  "name": "WordPress",
    3   "version": "4.9.11",
     3  "version": "4.9.12",
    44  "description": "WordPress is web software you can use to create a beautiful website or blog.",
    55  "repository": {
  • branches/4.9/src/wp-admin/about.php

    r46043 r46511  
    3737                <?php
    3838                printf(
    39                     /* translators: %s: WordPress version number */
     39                /* translators: %s: WordPress version number */
     40                    __( '<strong>Version %s</strong> addressed some security issues.' ),
     41                    '4.9.12'
     42                );
     43                ?>
     44                <?php
     45                printf(
     46                /* translators: %s: HelpHub URL */
     47                    __( 'For more information, see <a href="%s">the release notes</a>.' ),
     48                    sprintf(
     49                    /* translators: %s: WordPress version */
     50                        esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
     51                        sanitize_title( '4.9.12' )
     52                    )
     53                );
     54                ?>
     55            </p>
     56            <p>
     57                <?php
     58                printf(
     59                /* translators: %s: WordPress version number */
    4060                    __( '<strong>Version %s</strong> addressed some security issues.' ),
    4161                    '4.9.11'
     
    4464                <?php
    4565                printf(
    46                     /* translators: %s: HelpHub URL */
     66                /* translators: %s: HelpHub URL */
    4767                    __( 'For more information, see <a href="%s">the release notes</a>.' ),
    4868                    sprintf(
    49                         /* translators: %s: WordPress version */
     69                    /* translators: %s: WordPress version */
    5070                        esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
    5171                        sanitize_title( '4.9.11' )
  • branches/4.9/src/wp-includes/version.php

    r46043 r46511  
    55 * @global string $wp_version
    66 */
    7 $wp_version = '4.9.11-src';
     7$wp_version = '4.9.12-src';
    88
    99/**
Note: See TracChangeset for help on using the changeset viewer.