Changeset 58905 for trunk/src/wp-admin/load-styles.php
- Timestamp:
- 08/16/2024 02:27:03 PM (2 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/load-styles.php
r57943 r58905 2 2 3 3 /* 4 * Disable error reporting.5 * 6 * Set this to error_reporting( -1 ) for debugging.4 * The error_reporting() function can be disabled in php.ini. On systems where that is the case, 5 * it's best to add a dummy function to the wp-config.php file, but as this call to the function 6 * is run prior to wp-config.php loading, it is wrapped in a function_exists() check. 7 7 */ 8 error_reporting( 0 ); 8 if ( function_exists( 'error_reporting' ) ) { 9 /* 10 * Disable error reporting. 11 * 12 * Set this to error_reporting( -1 ) for debugging. 13 */ 14 error_reporting( 0 ); 15 } 9 16 10 17 // Set ABSPATH for execution.
Note: See TracChangeset
for help on using the changeset viewer.