Make WordPress Core


Ignore:
Timestamp:
04/15/2021 01:06:00 AM (4 years ago)
Author:
desrosj
Message:

Grouped merges for 5.6.3.

  • REST API: Allow authors to read their own password protected posts.
  • About page update.

Merges [50717] to the 5.6 branch.

Location:
branches/5.6
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/5.6

  • branches/5.6/src/wp-admin/about.php

    r50402 r50726  
    7878                    <?php
    7979                    printf(
     80                        /* translators: %s: WordPress version number */
     81                        __( '<strong>Version %s</strong> addressed some security issues.' ),
     82                        '5.6.3'
     83                    );
     84                    ?>
     85                    <?php
     86                    printf(
     87                        /* translators: %s: HelpHub URL */
     88                        __( 'For more information, see <a href="%s">the release notes</a>.' ),
     89                        sprintf(
     90                            /* translators: %s: WordPress version */
     91                            esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
     92                            sanitize_title( '5.6.3' )
     93                        )
     94                    );
     95                    ?>
     96                </p>
     97                <p>
     98                    <?php
     99                    printf(
    80100                        /* translators: 1: WordPress version number, 2: Plural number of bugs. */
    81101                        _n(
Note: See TracChangeset for help on using the changeset viewer.