Make WordPress Core


Ignore:
Timestamp:
08/30/2022 05:27:54 PM (3 years ago)
Author:
desrosj
Message:

WordPress 4.3.29.

File:
1 edited

Legend:

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

    r52892 r54004  
    109109
    110110        <div class="changelog point-releases">
    111             <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 28 ); ?></h3>
     111            <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 29 ); ?></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.29'
     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.29' )
     128                    )
     129                );
     130                ?>
     131            </p>
    112132            <p>
    113133                <?php
Note: See TracChangeset for help on using the changeset viewer.