diff options
Diffstat (limited to 'src/wp-admin/themes.php')
-rw-r--r-- | src/wp-admin/themes.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wp-admin/themes.php b/src/wp-admin/themes.php index 6d3ef5afa7..662039c008 100644 --- a/src/wp-admin/themes.php +++ b/src/wp-admin/themes.php @@ -255,7 +255,7 @@ if ( ! is_multisite() && current_user_can('edit_themes') && $broken_themes = wp_ foreach ( $broken_themes as $broken_theme ) { echo " <tr> - <td><?php echo $broken_theme->get( 'Name' ) ? $broken_theme->display( 'Name' ) : esc_html( $broken_theme->get_stylesheet() ); ?></td> + <td>" . ( $broken_theme->get( 'Name' ) ? $broken_theme->display( 'Name' ) : esc_html( $broken_theme->get_stylesheet() ) ) . "</td> <td>" . $broken_theme->errors()->get_error_message() . "</td> </tr>"; } |