]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/default-constants.php
WordPress 4.3-scripts
[autoinstalls/wordpress.git] / wp-includes / default-constants.php
index 734509a44ebb40e97b4ef57eb083f42714e3f1db..7325845966ccb4c127f7c01c14d97755760556cc 100644 (file)
@@ -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 );