Make WordPress Core


Ignore:
Timestamp:
08/30/2022 03:54:51 PM (2 years ago)
Author:
SergeyBiryukov
Message:

Grouped backports to the 3.9 branch.

  • Posts, Post Types: Escape output within the_meta().
  • General: Ensure bookmark query limits are numeric.
  • Plugins: Escape output in error messages.

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

Location:
branches/3.9
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/3.9

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

    r45965 r53984  
    863863 * Display list of post custom fields.
    864864 *
    865  * @internal This will probably change at some point...
    866865 * @since 1.2.0
    867  * @uses apply_filters() Calls 'the_meta_key' on list item HTML content, with key and value as separate parameters.
     866 *
     867 * @deprecated 6.0.2 Use get_post_meta() to retrieve post meta and render manually.
    868868 */
    869869function the_meta() {
     870    _deprecated_function( __FUNCTION__, '6.0.2', 'get_post_meta()' );
    870871    if ( $keys = get_post_custom_keys() ) {
    871872        echo "<ul class='post-meta'>\n";
     
    886887             * @param string $value Meta value.
    887888             */
    888             echo apply_filters( 'the_meta_key', "<li><span class='post-meta-key'>$key:</span> $value</li>\n", $key, $value );
     889            echo apply_filters( 'the_meta_key', "<li><span class='post-meta-key'>" . esc_html( $key ) . ":</span>" . esc_html( $value ) . "</li>\n", $key, $value );
    889890        }
    890891        echo "</ul>\n";
Note: See TracChangeset for help on using the changeset viewer.