Changeset 53972 for branches/5.1/src/wp-admin/plugins.php
- Timestamp:
- 08/30/2022 03:40:19 PM (3 years ago)
- Location:
- branches/5.1
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.1
- Property svn:mergeinfo changed
/trunk merged: 52412,53958-53960
- Property svn:mergeinfo changed
-
branches/5.1/src/wp-admin/plugins.php
r49516 r53972 467 467 __( 'The plugin %1$s has been <strong>deactivated</strong> due to an error: %2$s' ), 468 468 '<code>' . esc_html( $plugin_file ) . '</code>', 469 $error->get_error_message()469 esc_html( $error->get_error_message() ) 470 470 ); 471 471 echo '</p></div>'; … … 518 518 if ( is_wp_error( $delete_result ) ) : 519 519 ?> 520 <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>520 <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> 521 521 <?php else : ?> 522 522 <div id="message" class="updated notice is-dismissible">
Note: See TracChangeset
for help on using the changeset viewer.