Make WordPress Core

Changeset 57417

Timestamp:
01/30/2024 04:07:48 PM (6 months ago)
Author:
joemcgill
Message:

WordPress 4.3.33.

Location:
branches/4.3
Files:
4 edited

Legend:

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

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

    r56858 r57417  
    11{
    22    "name": "WordPress",
    3     "version": "4.3.32",
     3    "version": "4.3.3",
    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

    r56858 r57417  
    109109
    110110        <div class="changelog point-releases">
    111             <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 32 ); ?></h3>
     111            <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 some security issues.' ),
     117                    '4.3.33'
     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.33' )
     128                    )
     129                );
     130                ?>
     131            </p>
    112132            <p>
    113133                <?php
  • branches/4.3/src/wp-includes/version.php

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