Ticket #46809: 46809.patch
File 46809.patch, 711 bytes (added by , 6 years ago) |
---|
-
src/wp-admin/includes/class-wp-debug-data.php
902 902 * @return string The formatted data. 903 903 */ 904 904 public static function format( $info_array, $type = 'text' ) { 905 $return = '';905 $return = "`\n"; 906 906 907 907 foreach ( $info_array as $section => $details ) { 908 908 // Skip this section if there are no fields, or the section has been declared as private. … … 943 943 $return .= "\n"; 944 944 } 945 945 946 $return .= "`"; 947 946 948 return $return; 947 949 } 948 950