Make WordPress Core


Ignore:
Timestamp:
10/17/2022 07:36:43 PM (2 years ago)
Author:
SergeyBiryukov
Message:

WordPress 3.7.40.

File:
1 edited

Legend:

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

    r54463 r54575  
    3737
    3838<div class="changelog point-releases">
    39     <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 39 ); ?></h3>
    40     <p>
     39    <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 40 ); ?></h3>
     40    <p>
     41        <?php
     42        printf(
     43            /* translators: %s: WordPress version number */
     44            __( '<strong>Version %s</strong> addressed some security issues.' ),
     45            '3.7.40'
     46        );
     47        ?>
     48        <?php
     49        printf(
     50            /* translators: %s: HelpHub URL */
     51            __( 'For more information, see <a href="%s">the release notes</a>.' ),
     52            sprintf(
     53                /* translators: %s: WordPress version */
     54                esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
     55                sanitize_title( '3.7.40' )
     56            )
     57        );
     58        ?>
     59    </p>    <p>
    4160        <?php
    4261        printf(
Note: See TracChangeset for help on using the changeset viewer.