Changeset 37888 for trunk/src/wp-admin/includes/upgrade.php
- Timestamp:
- 06/28/2016 10:02:19 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/upgrade.php
r37854 r37888 192 192 193 193 // Default comment 194 $first_comment_author = __('Mr WordPress'); 194 $first_comment_author = __( 'A WordPress Commenter' ); 195 $first_comment_email = 'wapuu@wordpress.example'; 195 196 $first_comment_url = 'https://wordpress.org/'; 196 $first_comment = __('Hi, this is a comment. 197 To delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.'); 197 $first_comment = __( 'Hi, this is a comment. 198 To moderate comments, just log in. There you will have the option to edit or delete them. 199 Commenter avatars come from <a href="https://gravatar.com">Gravatar</a>.' ); 198 200 if ( is_multisite() ) { 199 201 $first_comment_author = get_site_option( 'first_comment_author', $first_comment_author ); 202 $first_comment_email = get_site_option( 'first_comment_email', $first_comment_email ); 200 203 $first_comment_url = get_site_option( 'first_comment_url', network_home_url() ); 201 204 $first_comment = get_site_option( 'first_comment', $first_comment ); … … 204 207 'comment_post_ID' => 1, 205 208 'comment_author' => $first_comment_author, 206 'comment_author_email' => '',209 'comment_author_email' => $first_comment_email, 207 210 'comment_author_url' => $first_comment_url, 208 211 'comment_date' => $now,
Note: See TracChangeset
for help on using the changeset viewer.