Make WordPress Core

Changeset 53981 for branches/4.2


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

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

Location:
branches/4.2
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/4.2

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

    r41445 r53981  
    409409if ( !empty($invalid) )
    410410    foreach ( $invalid as $plugin_file => $error )
    411         echo '<div id="message" class="error"><p>' . sprintf(__('The plugin <code>%s</code> has been <strong>deactivated</strong> due to an error: %s'), esc_html($plugin_file), $error->get_error_message()) . '</p></div>';
     411        echo '<div id="message" class="error"><p>' . sprintf(__('The plugin <code>%s</code> has been <strong>deactivated</strong> due to an error: %s'), esc_html($plugin_file), esc_html( $error->get_error_message() ) ) . '</p></div>';
    412412?>
    413413
     
    435435
    436436        if ( is_wp_error($delete_result) ) : ?>
    437         <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>
     437        <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>
    438438        <?php else : ?>
    439439        <div id="message" class="updated notice is-dismissible"><p><?php _e('The selected plugins have been <strong>deleted</strong>.'); ?></p></div>
  • branches/4.2/src/wp-includes/bookmark.php

    r31090 r53981  
    281281    $query .= " ORDER BY $orderby $order";
    282282    if ( $r['limit'] != -1 ) {
    283         $query .= ' LIMIT ' . $r['limit'];
     283        $query .= ' LIMIT ' . absint( $r['limit'] );
    284284    }
    285285
  • branches/4.2/src/wp-includes/post-template.php

    r45961 r53981  
    923923 * Display list of post custom fields.
    924924 *
    925  * @internal This will probably change at some point...
    926925 * @since 1.2.0
     926 *
     927 * @deprecated 6.0.2 Use get_post_meta() to retrieve post meta and render manually.
    927928 */
    928929function the_meta() {
     930    _deprecated_function( __FUNCTION__, '6.0.2', 'get_post_meta()' );
    929931    if ( $keys = get_post_custom_keys() ) {
    930932        echo "<ul class='post-meta'>\n";
     
    945947             * @param string $value Meta value.
    946948             */
    947             echo apply_filters( 'the_meta_key', "<li><span class='post-meta-key'>$key:</span> $value</li>\n", $key, $value );
     949            echo apply_filters( 'the_meta_key', "<li><span class='post-meta-key'>" . esc_html( $key ) . ":</span>" . esc_html( $value ) . "</li>\n", $key, $value );
    948950        }
    949951        echo "</ul>\n";
Note: See TracChangeset for help on using the changeset viewer.