Changeset 53977 for branches/4.6/src/wp-admin/plugins.php
- Timestamp:
- 08/30/2022 03:47:30 PM (2 years ago)
- Location:
- branches/4.6
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.6
- Property svn:mergeinfo changed
/trunk merged: 53958-53960
- Property svn:mergeinfo changed
-
branches/4.6/src/wp-admin/plugins.php
r41414 r53977 424 424 __( 'The plugin %1$s has been <strong>deactivated</strong> due to an error: %2$s' ), 425 425 '<code>' . esc_html( $plugin_file ) . '</code>', 426 $error->get_error_message() );426 esc_html( $error->get_error_message() ) ); 427 427 echo '</p></div>'; 428 428 } … … 459 459 460 460 if ( is_wp_error($delete_result) ) : ?> 461 <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>461 <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> 462 462 <?php else : ?> 463 463 <div id="message" class="updated notice is-dismissible">
Note: See TracChangeset
for help on using the changeset viewer.