Changeset 6179 for trunk/wp-settings.php
- Timestamp:
- 09/30/07 11:09:47 (1 year ago)
- Files:
-
- trunk/wp-settings.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
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
