Make WordPress Core


Ignore:
Timestamp:
08/30/2022 03:40:19 PM (4 years ago)
Author:
SergeyBiryukov
Message:

Grouped backports to the 5.1 branch.

  • Posts, Post Types: Escape output within the_meta().
  • General: Ensure bookmark query limits are numeric.
  • Plugins: Escape output in error messages.
  • Build/Test Tools: Allow the PHPCS plugin in Composer configuration.

Merges [52412,53958-53960] to the 5.1 branch.
Props tykoted, martinkrcho, xknown, dd32, peterwilsoncc, paulkevan, timothyblynjacobs.

Location:
branches/5.1
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/5.1

  • branches/5.1/src/wp-includes/post-template.php

    r45940 r53972  
    10481048 * @since 1.2.0
    10491049 *
    1050  * @internal This will probably change at some point...
     1050 * @deprecated 6.0.2 Use get_post_meta() to retrieve post meta and render manually.
    10511051 */
    10521052function the_meta() {
     1053    _deprecated_function( __FUNCTION__, '6.0.2', 'get_post_meta()' );
    10531054    if ( $keys = get_post_custom_keys() ) {
    10541055        $li_html = '';
     
    10651066                "<li><span class='post-meta-key'>%s</span> %s</li>\n",
    10661067                /* translators: %s: Post custom field name */
    1067                 sprintf( _x( '%s:', 'Post custom field name' ), $key ),
    1068                 $value
     1068                esc_html( sprintf( _x( '%s:', 'Post custom field name' ), $key ) ),
     1069                esc_html( $value )
    10691070            );
    10701071
Note: See TracChangeset for help on using the changeset viewer.