Make WordPress Core


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

WordPress 3.9.40.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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
Note: See TracChangeset for help on using the changeset viewer.