summaryrefslogtreecommitdiffstats
path: root/wp-settings.php
diff options
context:
space:
mode:
Diffstat (limited to 'wp-settings.php')
-rw-r--r--wp-settings.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/wp-settings.php b/wp-settings.php
index a777789..021c082 100644
--- a/wp-settings.php
+++ b/wp-settings.php
@@ -147,8 +147,9 @@ else
wp_cache_init();
-define( "UPLOADS", "wp-content/blogs.dir/{$wpdb->blogid}/files/" );
-if( defined( "BLOGDEFINITION" ) && constant( "BLOGDEFINITION" ) == true )
+if( !defined( "UPLOADS" ) )
+ define( "UPLOADS", "wp-content/blogs.dir/{$wpdb->blogid}/files/" );
+if( defined( "SHORTINIT" ) && constant( "SHORTINIT" ) == true ) // stop most of WP being loaded, we just want the basics
return;