summaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2005-08-12 10:17:08 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2005-08-12 10:17:08 +0000
commit3b5c6427610f14dd2a74f454e3624e9c70aff5d2 (patch)
tree525d05d7cf1c36d91b5219a0f5712f48cb978c28 /index.php
parentc369a852d2a5cbfeff53517449abe1804c33f937 (diff)
downloadwordpress-mu-3b5c6427610f14dd2a74f454e3624e9c70aff5d2.tar.gz
wordpress-mu-3b5c6427610f14dd2a74f454e3624e9c70aff5d2.tar.xz
wordpress-mu-3b5c6427610f14dd2a74f454e3624e9c70aff5d2.zip
Welcome email has carriage returns
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@168 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'index.php')
-rw-r--r--index.php16
1 files changed, 15 insertions, 1 deletions
diff --git a/index.php b/index.php
index 786869e..c51ea3f 100644
--- a/index.php
+++ b/index.php
@@ -395,7 +395,21 @@ function step3() {
$wpdb->query( "INSERT INTO ".$wpdb->site." ( id, domain, path ) VALUES ( NULL, '$domain', '$base' )" );
$wpdb->query( "INSERT INTO " . $wpdb->sitecategories . " VALUES (1, 'Uncategorized', 'uncategorized', '')" );
- $wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'welcome_email', 'Dear User,\n\nYour new SITE_NAME blog has been successfully set up at:\nBLOG_URL\n\nYou can log in to the administrator account with the following information:\n Username: USERNAME\n Password: PASSWORD\nLogin Here: BLOG_URLwp-login.php\n\nWe hope you enjoy your new weblog.\n Thanks!\n\n--The WordPress Team\nSITE_NAME\n')";
+ $wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'welcome_email', 'Dear User,
+
+Your new SITE_NAME blog has been successfully set up at:
+BLOG_URL
+
+You can log in to the administrator account with the following information:
+ Username: USERNAME
+ Password: PASSWORD
+Login Here: BLOG_URLwp-login.php
+
+We hope you enjoy your new weblog.
+ Thanks!
+
+--The WordPress Team
+SITE_NAME')";
$wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'first_post', 'Welcome to <a href=\"SITE_URL\">SITE_NAME</a>. This is your first post. Edit or delete it, then start blogging!')";
$res = createBlog( $domain, $base, 'admin', $weblog_title, $email );