From 52eef00d9459e5cec11e7738c6e18ef68a0519bd Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Mon, 27 Sep 2010 07:29:18 +0000 Subject: [PATCH] Fix a comma splice. Props Amanda French. git-svn-id: https://develop.svn.wordpress.org/trunk@15670 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/upgrade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/includes/upgrade.php b/wp-admin/includes/upgrade.php index e8d78e84d9..63fbbaab66 100644 --- a/wp-admin/includes/upgrade.php +++ b/wp-admin/includes/upgrade.php @@ -243,7 +243,7 @@ function wp_install_defaults($user_id) { )); // First Page - $first_page = __('This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.'); + $first_page = __('This is an example of a WordPress page. You could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.'); if ( is_multisite() ) $first_page = get_site_option( 'first_page', $first_page ); $first_post_guid = get_option('home') . '/?page_id=2';