diff --git src/wp-admin/includes/class-wp-privacy-policy-content.php src/wp-admin/includes/class-wp-privacy-policy-content.php
index 9b11d09a66..7094480874 100644
|
|
final class WP_Privacy_Policy_Content { |
379 | 379 | public static function privacy_policy_guide() { |
380 | 380 | |
381 | 381 | $content_array = self::get_suggested_policy_text(); |
382 | | $content = ''; |
383 | 382 | $date_format = __( 'F j, Y' ); |
384 | 383 | |
385 | 384 | foreach ( $content_array as $section ) { |
386 | | $class = ''; |
387 | | $meta = ''; |
388 | 385 | $removed = ''; |
389 | 386 | |
390 | 387 | if ( ! empty( $section['removed'] ) ) { |
diff --git src/wp-admin/includes/schema.php src/wp-admin/includes/schema.php
index 57ffe69054..9638ca4770 100644
|
|
function populate_network( $network_id = 1, $domain = '', $email = '', $site_nam |
992 | 992 | } |
993 | 993 | |
994 | 994 | // Check for network collision. |
995 | | $network_exists = false; |
996 | 995 | if ( is_multisite() ) { |
997 | 996 | if ( get_network( (int) $network_id ) ) { |
998 | 997 | $errors->add( 'siteid_exists', __( 'The network already exists.' ) ); |