Close #1127 - Assume prod if WP_ENV is undefined

This commit is contained in:
Ben Word
2014-08-15 12:51:47 -05:00
parent a1edc5404f
commit a36a8e4372

View File

@@ -14,7 +14,7 @@ add_theme_support('jquery-cdn'); // Enable to load jQuery from the Go
define('GOOGLE_ANALYTICS_ID', ''); // UA-XXXXX-Y (Note: Universal Analytics only, not Classic Analytics)
if (!defined('WP_ENV')) {
define('WP_ENV', 'development'); // scripts.php checks for values 'production' or 'development'
define('WP_ENV', 'production'); // scripts.php checks for values 'production' or 'development'
}
/**