Changeset 56180 for trunk/src/wp-includes/default-constants.php
- Timestamp:
- 07/09/2023 09:46:24 PM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/default-constants.php
r56042 r56180 96 96 } 97 97 98 // Add define( 'WP_DEBUG_DISPLAY', null ); to wp-config.php to use the globally configured setting 99 // for 'display_errors' and not force errors to be displayed. Use false to force 'display_errors' off. 98 /* 99 * Add define( 'WP_DEBUG_DISPLAY', null ); to wp-config.php to use the globally configured setting 100 * for 'display_errors' and not force errors to be displayed. Use false to force 'display_errors' off. 101 */ 100 102 if ( ! defined( 'WP_DEBUG_DISPLAY' ) ) { 101 103 define( 'WP_DEBUG_DISPLAY', true ); … … 111 113 } 112 114 113 // Add define( 'SCRIPT_DEBUG', true ); to wp-config.php to enable loading of non-minified, 114 // non-concatenated scripts and stylesheets. 115 /* 116 * Add define( 'SCRIPT_DEBUG', true ); to wp-config.php to enable loading of non-minified, 117 * non-concatenated scripts and stylesheets. 118 */ 115 119 if ( ! defined( 'SCRIPT_DEBUG' ) ) { 116 120 if ( ! empty( $wp_version ) ) {
Note: See TracChangeset
for help on using the changeset viewer.