From 6ef0b4c76533a4204f0ba97078a9e71ce0092e2d Mon Sep 17 00:00:00 2001 From: Mark Jaquith Date: Mon, 9 Jul 2012 03:19:02 +0000 Subject: [PATCH] Insert a proper line break (instead of an HTML line break) into the "first comment". props nacin. fixes #16712 git-svn-id: https://develop.svn.wordpress.org/trunk@21234 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/upgrade.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wp-admin/includes/upgrade.php b/wp-admin/includes/upgrade.php index bb69d9a077..39537915be 100644 --- a/wp-admin/includes/upgrade.php +++ b/wp-admin/includes/upgrade.php @@ -224,7 +224,8 @@ function wp_install_defaults($user_id) { // Default comment $first_comment_author = __('Mr WordPress'); $first_comment_url = 'http://wordpress.org/'; - $first_comment = __('Hi, this is a comment.
To delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.'); + $first_comment = __('Hi, this is a comment. +To delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.'); if ( is_multisite() ) { $first_comment_author = get_site_option( 'first_comment_author', $first_comment_author ); $first_comment_url = get_site_option( 'first_comment_url', network_home_url() );