mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 14:20:15 +00:00
Coding Standards: Use a consistent markup for line break tags across Core.
This changeset replaces `<br/>` with `<br />` on various places, as per WordPress Coding Standards. See https://developer.wordpress.org/coding-standards/wordpress-coding-standards/html/#self-closing-elements Props haritpanchal, costdev, audrasjb. Fixes #56457. git-svn-id: https://develop.svn.wordpress.org/trunk@54062 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -752,7 +752,7 @@ class WP_Plugins_List_Table extends WP_List_Table {
|
||||
$plugin_name = $plugin_file;
|
||||
|
||||
if ( $plugin_file !== $plugin_data['Name'] ) {
|
||||
$plugin_name .= '<br/>' . $plugin_data['Name'];
|
||||
$plugin_name .= '<br />' . $plugin_data['Name'];
|
||||
}
|
||||
|
||||
if ( true === ( $dropins[ $plugin_file ][1] ) ) { // Doesn't require a constant.
|
||||
|
||||
Reference in New Issue
Block a user