Make WordPress Core


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

Grouped backports to the 5.5 branch.

  • Posts, Post Types: Escape output within the_meta().
  • General: Ensure bookmark query limits are numeric.
  • Plugins: Escape output in error messages.
  • Build/Test Tools: Allow the PHPCS plugin in Composer configuration.

Merges [52412,53958-53960] to the 5.5 branch.
Props tykoted, martinkrcho, xknown, dd32, peterwilsoncc, paulkevan, timothyblynjacobs.

Location:
branches/5.5
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/5.5

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

    r48669 r53968  
    611611                        __( 'The plugin %1$s has been deactivated due to an error: %2$s' ),
    612612                        '<code>' . esc_html( $plugin_file ) . '</code>',
    613                         $error->get_error_message()
     613                        esc_html( $error->get_error_message() )
    614614                );
    615615                echo '</p></div>';
     
    673673                                        /* translators: %s: Error message. */
    674674                                        __( 'Plugin could not be deleted due to an error: %s' ),
    675                                         $delete_result->get_error_message()
     675                                        esc_html( $delete_result->get_error_message() )
    676676                                );
    677677                                ?>
Note: See TracChangeset for help on using the changeset viewer.