summaryrefslogtreecommitdiffstats
path: root/index-install.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-10-15 09:45:28 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-10-15 09:45:28 +0000
commiteb7857f7c040f22d42f13af86e8ae990bbc8f6be (patch)
tree152f1659d12735a1b31b98b684525381bd923706 /index-install.php
parent3a4570b0fc8b3d6339bef71d17d7701554e0bbf7 (diff)
downloadwordpress-mu-eb7857f7c040f22d42f13af86e8ae990bbc8f6be.tar.gz
wordpress-mu-eb7857f7c040f22d42f13af86e8ae990bbc8f6be.tar.xz
wordpress-mu-eb7857f7c040f22d42f13af86e8ae990bbc8f6be.zip
Disable registration by default
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@1070 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'index-install.php')
-rw-r--r--index-install.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index-install.php b/index-install.php
index d36f67a..c8fa6ff 100644
--- a/index-install.php
+++ b/index-install.php
@@ -367,7 +367,7 @@ function step3() {
// set up site tables
$wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'admin_email', '".$email."')" );
$wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'admin_user_id', '1')" );
- $wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'registration', 'all')" );
+ $wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'registration', 'none')" );
$wpdb->query( "INSERT INTO ".$wpdb->site." ( id, domain, path ) VALUES ( NULL, '$domain', '$base' )" );
$wpdb->query( "INSERT INTO " . $wpdb->sitecategories . " ( cat_ID, cat_name, category_nicename, last_updated ) VALUES (1, 'Uncategorized', 'uncategorized', NOW())" );
$wpdb->query( "INSERT INTO " . $wpdb->sitecategories . " ( cat_ID, cat_name, category_nicename, last_updated ) VALUES (2, 'Blogroll', 'blogroll', NOW())" );