Make WordPress Core


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

Grouped backports to the 4.7 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 4.7 branch.
Props tykoted, martinkrcho, xknown, dd32, peterwilsoncc, paulkevan, timothyblynjacobs.

Location:
branches/4.7
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.7

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

    r45954 r53976  
    995995 * @since 1.2.0
    996996 *
    997  * @internal This will probably change at some point...
    998  *
     997 * @deprecated 6.0.2 Use get_post_meta() to retrieve post meta and render manually.
    999998 */
    1000999function the_meta() {
     1000    _deprecated_function( __FUNCTION__, '6.0.2', 'get_post_meta()' );
    10011001    if ( $keys = get_post_custom_keys() ) {
    10021002        echo "<ul class='post-meta'>\n";
     
    10171017             * @param string $value Meta value.
    10181018             */
    1019             echo apply_filters( 'the_meta_key', "<li><span class='post-meta-key'>$key:</span> $value</li>\n", $key, $value );
     1019            echo apply_filters( 'the_meta_key', "<li><span class='post-meta-key'>" . esc_html( $key ) . ":</span>" . esc_html( $value ) . "</li>\n", $key, $value );
    10201020        }
    10211021        echo "</ul>\n";
Note: See TracChangeset for help on using the changeset viewer.