Make WordPress Core

Changeset 54907


Ignore:
Timestamp:
11/30/2022 12:17:14 AM (4 years ago)
Author:
peterwilsoncc
Message:

WordPress 3.8.41.

Location:
branches/3.8
Files:
4 edited

Legend:

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

    r54576 r54907  
    11{
    22        "name": "WordPress",
    3         "version": "3.8.40",
     3        "version": "3.8.41",
    44        "lockfileVersion": 1,
    55        "requires": true,
  • branches/3.8/package.json

    r54576 r54907  
    11{
    22        "name": "WordPress",
    3         "version": "3.8.40",
     3        "version": "3.8.41",
    44        "description": "WordPress is web software you can use to create a beautiful website or blog.",
    55        "repository": {
  • branches/3.8/src/wp-admin/about.php

    r54576 r54907  
    4040
    4141<div class="changelog point-releases">
    42         <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 40 ); ?></h3>
     42        <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 41 ); ?></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.8.41'
     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.8.41' )
     63                        )
     64                );
     65                ?>
     66        </p>
    4367        <p>
    4468                <?php
  • branches/3.8/src/wp-includes/version.php

    r54576 r54907  
    55 * @global string $wp_version
    66 */
    7 $wp_version = '3.8.40-src';
     7$wp_version = '3.8.41-src';
    88
    99/**
Note: See TracChangeset for help on using the changeset viewer.