Make WordPress Core


Ignore:
Timestamp:
02/22/2022 10:59:16 AM (3 years ago)
Author:
audrasjb
Message:

Help/About: Revert [52783].

Point releases about page changelog should not be committed to trunk. This changeset reverts [52783].

Unprops audrasjb.

File:
1 edited

Legend:

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

    r52783 r52784  
    3838                <a href="privacy.php" class="nav-tab"><?php _e( 'Privacy' ); ?></a>
    3939            </nav>
    40         </div>
    41 
    42         <div class="about__section changelog">
    43             <div class="column">
    44                 <h2><?php _e( 'Maintenance Release' ); ?></h2>
    45                 <p>
    46                     <?php
    47                     printf(
    48                         /* translators: 1: WordPress version number, 2: plural number of bugs. */
    49                         _n(
    50                             '<strong>Version %1$s</strong> addressed %2$s bug.',
    51                             '<strong>Version %1$s</strong> addressed %2$s bugs.',
    52                             82
    53                         ),
    54                         '5.9.1',
    55                         number_format_i18n( 82 )
    56                     );
    57                     ?>
    58                     <?php
    59                     printf(
    60                         /* translators: %s: HelpHub URL. */
    61                         __( 'For more information, see <a href="%s">the release notes</a>.' ),
    62                         sprintf(
    63                             /* translators: %s: WordPress version. */
    64                             esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
    65                             sanitize_title( '5.9.1' )
    66                         )
    67                     );
    68                     ?>
    69                 </p>
    70             </div>
    7140        </div>
    7241
Note: See TracChangeset for help on using the changeset viewer.