Make WordPress Core

Changeset 53977 for branches/4.6


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

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

Location:
branches/4.6
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/4.6

  • branches/4.6/src/wp-admin/plugins.php

    r41414 r53977  
    424424            __( 'The plugin %1$s has been <strong>deactivated</strong> due to an error: %2$s' ),
    425425            '<code>' . esc_html( $plugin_file ) . '</code>',
    426             $error->get_error_message() );
     426            esc_html( $error->get_error_message() ) );
    427427        echo '</p></div>';
    428428    }
     
    459459
    460460        if ( is_wp_error($delete_result) ) : ?>
    461         <div id="message" class="error notice is-dismissible"><p><?php printf( __('Plugin could not be deleted due to an error: %s'), $delete_result->get_error_message() ); ?></p></div>
     461        <div id="message" class="error notice is-dismissible"><p><?php printf( __('Plugin could not be deleted due to an error: %s'), esc_html( $delete_result->get_error_message() ) ); ?></p></div>
    462462        <?php else : ?>
    463463        <div id="message" class="updated notice is-dismissible">
  • branches/4.6/src/wp-includes/bookmark.php

    r37586 r53977  
    282282    $query .= " ORDER BY $orderby $order";
    283283    if ( $r['limit'] != -1 ) {
    284         $query .= ' LIMIT ' . $r['limit'];
     284        $query .= ' LIMIT ' . absint( $r['limit'] );
    285285    }
    286286
  • branches/4.6/src/wp-includes/post-template.php

    r45956 r53977  
    976976 * @since 1.2.0
    977977 *
    978  * @internal This will probably change at some point...
    979  *
     978 * @deprecated 6.0.2 Use get_post_meta() to retrieve post meta and render manually.
    980979 */
    981980function the_meta() {
     981    _deprecated_function( __FUNCTION__, '6.0.2', 'get_post_meta()' );
    982982    if ( $keys = get_post_custom_keys() ) {
    983983        echo "<ul class='post-meta'>\n";
     
    998998             * @param string $value Meta value.
    999999             */
    1000             echo apply_filters( 'the_meta_key', "<li><span class='post-meta-key'>$key:</span> $value</li>\n", $key, $value );
     1000            echo apply_filters( 'the_meta_key', "<li><span class='post-meta-key'>" . esc_html( $key ) . ":</span>" . esc_html( $value ) . "</li>\n", $key, $value );
    10011001        }
    10021002        echo "</ul>\n";
Note: See TracChangeset for help on using the changeset viewer.