X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/7f1521bf193b382565eb753043c161f4cb3fcda7..53f4633144ed68c8b8fb5861f992b5489894a940:/wp-includes/default-constants.php diff --git a/wp-includes/default-constants.php b/wp-includes/default-constants.php index 734509a4..73258459 100644 --- a/wp-includes/default-constants.php +++ b/wp-includes/default-constants.php @@ -17,7 +17,7 @@ function wp_initial_constants() { // set memory limits if ( !defined('WP_MEMORY_LIMIT') ) { - if( is_multisite() ) { + if ( is_multisite() ) { define('WP_MEMORY_LIMIT', '64M'); } else { define('WP_MEMORY_LIMIT', '40M'); @@ -71,6 +71,18 @@ function wp_initial_constants() { if ( !defined('WP_CACHE') ) define('WP_CACHE', false); + // Add define('SCRIPT_DEBUG', true); to wp-config.php to enable loading of non-minified, + // non-concatenated scripts and stylesheets. + if ( ! defined( 'SCRIPT_DEBUG' ) ) { + if ( ! empty( $GLOBALS['wp_version'] ) ) { + $develop_src = false !== strpos( $GLOBALS['wp_version'], '-src' ); + } else { + $develop_src = false; + } + + define( 'SCRIPT_DEBUG', $develop_src ); + } + /** * Private */ @@ -80,6 +92,9 @@ function wp_initial_constants() { if ( !defined('SHORTINIT') ) define('SHORTINIT', false); + // Constants for features added to WP that should short-circuit their plugin implementations + define( 'WP_FEATURE_BETTER_PASSWORDS', true ); + // Constants for expressing human-readable intervals // in their respective number of seconds. define( 'MINUTE_IN_SECONDS', 60 );