Make WordPress Core


Ignore:
Timestamp:
05/16/2023 03:25:24 PM (3 years ago)
Author:
SergeyBiryukov
Message:

Grouped backports to the 4.3 branch.

  • Media: Prevent CSRF setting attachment thumbnails.

Merges [55764] to the 4.3 branch.
Props dd32, isabel_brison, martinkrcho, matveb, ocean90, paulkevan, peterwilsoncc, timothyblynjacobs, xknown, youknowriad.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/4.3/src/wp-admin/about.php

    r55389 r55776  
    109109
    110110        <div class="changelog point-releases">
    111             <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 30 ); ?></h3>
     111            <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 31 ); ?></h3>
     112            <p>
     113                <?php
     114                printf(
     115                    /* translators: %s: WordPress version number */
     116                    __( '<strong>Version %s</strong> addressed one security issue.' ),
     117                    '4.3.31'
     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.31' )
     128                    )
     129                );
     130                ?>
     131            </p>
    112132            <p>
    113133                <?php
Note: See TracChangeset for help on using the changeset viewer.