diff --git src/wp-admin/includes/schema.php src/wp-admin/includes/schema.php
index 59a5574..cd66e19 100644
|
|
function populate_options() { |
516 | 516 | // 4.4.0 |
517 | 517 | 'medium_large_size_w' => 768, |
518 | 518 | 'medium_large_size_h' => 0, |
519 | | |
520 | | // 4.7.0 |
521 | | 'fresh_site' => 1, |
522 | 519 | ); |
523 | 520 | |
524 | 521 | // 3.3 |
diff --git src/wp-admin/includes/upgrade.php src/wp-admin/includes/upgrade.php
index 848002e..1d2c0c3 100644
|
|
function wp_install( $blog_title, $user_name, $user_email, $public, $deprecated |
49 | 49 | update_option('blogname', $blog_title); |
50 | 50 | update_option('admin_email', $user_email); |
51 | 51 | update_option('blog_public', $public); |
| 52 | update_option('fresh_site', 1); |
52 | 53 | |
53 | 54 | if ( $language ) { |
54 | 55 | update_option( 'WPLANG', $language ); |