Make WordPress Core


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

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

Location:
branches/4.9
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.9

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

    r44106 r53974  
    456456            __( 'The plugin %1$s has been <strong>deactivated</strong> due to an error: %2$s' ),
    457457            '<code>' . esc_html( $plugin_file ) . '</code>',
    458             $error->get_error_message() );
     458            esc_html( $error->get_error_message() ) );
    459459        echo '</p></div>';
    460460    }
     
    491491
    492492        if ( is_wp_error($delete_result) ) : ?>
    493         <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>
     493        <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>
    494494        <?php else : ?>
    495495        <div id="message" class="updated notice is-dismissible">
Note: See TracChangeset for help on using the changeset viewer.