Changeset 6179
- Timestamp:
- 09/30/2007 11:09:47 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-settings.php
r6139 r6179 96 96 timer_start(); 97 97 98 // Change to E_ALL for development/debugging 99 error_reporting(E_ALL ^ E_NOTICE); 98 // Add define('WPDEBUG',true); to wp-config.php to enable display of notices during development. 99 if (defined('WPDEBUG') and WPDEBUG == true) { 100 error_reporting(E_ALL); 101 } else { 102 error_reporting(E_ALL ^ E_NOTICE); 103 } 100 104 101 105 // For an advanced caching plugin to use, static because you would only want one
Note: See TracChangeset
for help on using the changeset viewer.