diff --git a/src/wp-admin/includes/class-wp-debug-data.php b/src/wp-admin/includes/class-wp-debug-data.php index 850ae9a860..e646cad3e4 100644 --- a/src/wp-admin/includes/class-wp-debug-data.php +++ b/src/wp-admin/includes/class-wp-debug-data.php @@ -902,7 +902,7 @@ class WP_Debug_Data { * @return string The formatted data. */ public static function format( $info_array, $type = 'text' ) { - $return = ''; + $return = "`\n"; foreach ( $info_array as $section => $details ) { // Skip this section if there are no fields, or the section has been declared as private. @@ -943,6 +943,8 @@ class WP_Debug_Data { $return .= "\n"; } + $return .= "`"; + return $return; }