Make WordPress Core

Changeset 54906


Ignore:
Timestamp:
11/30/2022 12:15:45 AM (2 years ago)
Author:
peterwilsoncc
Message:

WordPress 3.9.40.

Location:
branches/3.9
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/3.9/package-lock.json

    r54626 r54906  
    11{
    22    "name": "WordPress",
    3     "version": "3.9.39",
     3    "version": "3.9.40",
    44    "lockfileVersion": 1,
    55    "requires": true,
  • branches/3.9/package.json

    r54626 r54906  
    11{
    22    "name": "WordPress",
    3     "version": "3.9.39",
     3    "version": "3.9.40",
    44    "description": "WordPress is web software you can use to create a beautiful website or blog.",
    55    "repository": {
  • branches/3.9/src/wp-admin/about.php

    r54626 r54906  
    4040
    4141<div class="changelog point-releases">
    42     <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 39 ); ?></h3>
     42    <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 40 ); ?></h3>
     43    <p>
     44        <?php
     45        printf(
     46            /* translators: %s: WordPress version number */
     47            _n(
     48                '<strong>Version %1$s</strong> addressed a security issue.',
     49                '<strong>Version %1$s</strong> addressed some security issues.',
     50                1
     51            ),
     52            '3.9.40'
     53        );
     54        ?>
     55        <?php
     56        printf(
     57            /* translators: %s: HelpHub URL */
     58            __( 'For more information, see <a href="%s">the release notes</a>.' ),
     59            sprintf(
     60                /* translators: %s: WordPress version */
     61                esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
     62                sanitize_title( '3.9.40' )
     63            )
     64        );
     65        ?>
     66    </p>
    4367    <p>
    4468        <?php
  • branches/3.9/src/wp-includes/version.php

    r54626 r54906  
    55 * @global string $wp_version
    66 */
    7 $wp_version = '3.9.39-src';
     7$wp_version = '3.9.40-src';
    88
    99/**
Note: See TracChangeset for help on using the changeset viewer.