Make WordPress Core

Changeset 58525 for branches/4.3


Ignore:
Timestamp:
06/24/2024 04:37:16 PM (22 months ago)
Author:
audrasjb
Message:

WordPress 4.3.34.

Location:
branches/4.3
Files:
4 edited

Legend:

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

    r57417 r58525  
    11{
    22    "name": "WordPress",
    3     "version": "4.3.33",
     3    "version": "4.3.34",
    44    "lockfileVersion": 1,
    55    "requires": true,
  • branches/4.3/package.json

    r57417 r58525  
    11{
    22    "name": "WordPress",
    3     "version": "4.3.33",
     3    "version": "4.3.34",
    44    "description": "WordPress is web software you can use to create a beautiful website or blog.",
    55    "repository": {
  • branches/4.3/src/wp-admin/about.php

    r57417 r58525  
    110110        <div class="changelog point-releases">
    111111            <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 33 ); ?></h3>
     112            <p>
     113                <?php
     114                printf(
     115                    /* translators: %s: WordPress version number */
     116                    __( '<strong>Version %1$s</strong> addressed a security issue.' ),
     117                    '4.3.34'
     118                );
     119                ?>
     120                <?php
     121                printf(
     122                    /* translators: %s: HelpHub URL */
     123                    __( 'For more information, see <a href="%s">the release notes</a>.' ),
     124                    sprintf(
     125                        /* translators: %s: WordPress version */
     126                        esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
     127                        sanitize_title( '4.3.34' )
     128                    )
     129                );
     130                ?>
     131            </p>
     132
    112133            <p>
    113134                <?php
  • branches/4.3/src/wp-includes/version.php

    r57417 r58525  
    55 * @global string $wp_version
    66 */
    7 $wp_version = '4.3.33-src';
     7$wp_version = '4.3.34-src';
    88
    99/**
Note: See TracChangeset for help on using the changeset viewer.