Make WordPress Core

Changeset 53979 for branches/4.4


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

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

Location:
branches/4.4
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/4.4

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

    r41434 r53979  
    454454            __( 'The plugin %1$s has been <strong>deactivated</strong> due to an error: %2$s' ),
    455455            '<code>' . esc_html( $plugin_file ) . '</code>',
    456             $error->get_error_message() );
     456            esc_html( $error->get_error_message() ) );
    457457        echo '</p></div>';
    458458    }
     
    489489
    490490        if ( is_wp_error($delete_result) ) : ?>
    491         <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>
     491        <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>
    492492        <?php else : ?>
    493493        <div id="message" class="updated notice is-dismissible">
  • branches/4.4/src/wp-includes/bookmark.php

    r35725 r53979  
    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.4/src/wp-includes/post-template.php

    r45958 r53979  
    947947 * @since 1.2.0
    948948 *
    949  * @internal This will probably change at some point...
    950  *
     949 * @deprecated 6.0.2 Use get_post_meta() to retrieve post meta and render manually.
    951950 */
    952951function the_meta() {
     952    _deprecated_function( __FUNCTION__, '6.0.2', 'get_post_meta()' );
    953953    if ( $keys = get_post_custom_keys() ) {
    954954        echo "<ul class='post-meta'>\n";
     
    969969             * @param string $value Meta value.
    970970             */
    971             echo apply_filters( 'the_meta_key', "<li><span class='post-meta-key'>$key:</span> $value</li>\n", $key, $value );
     971            echo apply_filters( 'the_meta_key', "<li><span class='post-meta-key'>" . esc_html( $key ) . ":</span>" . esc_html( $value ) . "</li>\n", $key, $value );
    972972        }
    973973        echo "</ul>\n";
Note: See TracChangeset for help on using the changeset viewer.