Make WordPress Core

Changeset 53985 for branches/3.8


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

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

Location:
branches/3.8
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/3.8

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

    r41452 r53985  
    372372if ( !empty($invalid) )
    373373    foreach ( $invalid as $plugin_file => $error )
    374         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>';
     374        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>';
    375375?>
    376376
     
    398398
    399399        if ( is_wp_error($delete_result) ) : ?>
    400         <div id="message" class="updated"><p><?php printf( __('Plugin could not be deleted due to an error: %s'), $delete_result->get_error_message() ); ?></p></div>
     400        <div id="message" class="updated"><p><?php printf( __('Plugin could not be deleted due to an error: %s'), esc_html( $delete_result->get_error_message() ) ); ?></p></div>
    401401        <?php else : ?>
    402402        <div id="message" class="updated"><p><?php _e('The selected plugins have been <strong>deleted</strong>.'); ?></p></div>
  • branches/3.8/src/wp-includes/bookmark.php

    r27917 r53985  
    275275    $query .= " ORDER BY $orderby $order";
    276276    if ($limit != -1)
    277         $query .= " LIMIT $limit";
     277        $query .= ' LIMIT ' . absint( $limit );
    278278
    279279    $results = $wpdb->get_results($query);
  • branches/3.8/src/wp-includes/post-template.php

    r45968 r53985  
    732732 * Display list of post custom fields.
    733733 *
    734  * @internal This will probably change at some point...
    735734 * @since 1.2.0
    736  * @uses apply_filters() Calls 'the_meta_key' on list item HTML content, with key and value as separate parameters.
     735 *
     736 * @deprecated 6.0.2 Use get_post_meta() to retrieve post meta and render manually.
    737737 */
    738738function the_meta() {
     739    _deprecated_function( __FUNCTION__, '6.0.2', 'get_post_meta()' );
    739740    if ( $keys = get_post_custom_keys() ) {
    740741        echo "<ul class='post-meta'>\n";
     
    745746            $values = array_map('trim', get_post_custom_values($key));
    746747            $value = implode($values,', ');
    747             echo apply_filters('the_meta_key', "<li><span class='post-meta-key'>$key:</span> $value</li>\n", $key, $value);
     748            echo apply_filters('the_meta_key', "<li><span class='post-meta-key'>" . esc_html( $key ) . ":</span> " . esc_html( $value ) . "</li>\n", $key, $value);
    748749        }
    749750        echo "</ul>\n";
Note: See TracChangeset for help on using the changeset viewer.