Ticket #47828: 45345.patch
File 45345.patch, 824 bytes (added by , 18 months ago) |
---|
-
src/wp-admin/includes/class-wp-debug-data.php
294 294 'value' => $wp_local_dev, 295 295 'debug' => $wp_local_dev_debug, 296 296 ), 297 'DB_CHARSET' => array( 298 'label' => 'DB_CHARSET', 299 'value' => ( defined( 'DB_CHARSET' ) ? DB_CHARSET : __( 'Undefined' ) ), 300 'debug' => ( defined( 'DB_CHARSET' ) ? DB_CHARSET : 'Undefined' ), 301 ), 302 'DB_COLLATE' => array( 303 'label' => 'DB_COLLATE', 304 'value' => ( defined( 'DB_COLLATE' ) ? DB_COLLATE : __( 'Undefined' ) ), 305 'debug' => ( defined( 'DB_COLLATE' ) ? DB_COLLATE : 'Undefined' ), 306 ), 297 307 ), 298 308 ); 299 309