From e56fb80aa58d82a84d7e41fb52f5f480f5cc0d49 Mon Sep 17 00:00:00 2001 From: Peter Westwood Date: Thu, 10 Dec 2009 22:45:10 +0000 Subject: [PATCH] Revert [11212], [12252], [12255] and [12258]. Stick with Hello World for now and we will look at other solutions. See #110808. git-svn-id: https://develop.svn.wordpress.org/trunk@12366 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/upgrade.php | 33 +++------------------------------ 1 file changed, 3 insertions(+), 30 deletions(-) diff --git a/wp-admin/includes/upgrade.php b/wp-admin/includes/upgrade.php index c38ea8355f..69e1a79aef 100644 --- a/wp-admin/includes/upgrade.php +++ b/wp-admin/includes/upgrade.php @@ -162,38 +162,11 @@ function wp_install_defaults($user_id) { 'post_author' => $user_id, 'post_date' => $now, 'post_date_gmt' => $now_gmt, - 'post_content' => sprintf(__(' -Welcome to WordPress! This post contains important information. After you read it, you can make it private to hide it from visitors but still have the information handy for future reference. - -First things first: - -As a subscriber, you will receive an email every time an update is available (and only then). This will make it easier to keep your site up to date, and secure from evildoers. -When a new version is released, log in to the Dashboard and follow the instructions. -Upgrading is a couple of clicks! - -Then you can start enjoying the WordPress experience: - -To keep this post for reference, click to edit it, go to the Publish box and change its Visibility from Public to Private. - -Thank you for selecting WordPress. We wish you happy publishing! - -PS. Not yet subscribed for update notifications? Do it now! -'), esc_attr_x('http://wordpress.org/download/','url for release notification mailing list subscription.'), admin_url(''), admin_url('profile.php'), admin_url('post-new.php'), admin_url('page-new.php'), -admin_url('plugin-install.php'), admin_url('theme-install.php'), admin_url('options-permalink.php'), admin_url('import.php'), esc_attr_x('http://codex.wordpress.org','url for codex documentation.'), admin_url('post.php?action=edit&post=1')), + 'post_content' => __('Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!'), 'post_excerpt' => '', - 'post_title' => __('Welcome!'), + 'post_title' => __('Hello world!'), /* translators: Default post slug */ - 'post_name' => _x('welcome', 'Default post slug'), + 'post_name' => _x('hello-world', 'Default post slug'), 'post_modified' => $now, 'post_modified_gmt' => $now_gmt, 'guid' => $first_post_guid,