Fix typo (missing `!`).

See #43491.

git-svn-id: https://develop.svn.wordpress.org/trunk@42982 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2018-04-16 10:13:38 +00:00
parent 5786dee456
commit bb4dff10f6
1 changed files with 2 additions and 2 deletions

View File

@ -308,13 +308,13 @@ As a new WordPress user, you should go to <a href=\"%s\">your dashboard</a> to d
); );
// Privacy Policy page // Privacy Policy page
if ( class_exists( 'WP_Privacy_Policy_Content' ) ) { if ( ! class_exists( 'WP_Privacy_Policy_Content' ) ) {
include_once( ABSPATH . 'wp-admin/includes/misc.php' ); include_once( ABSPATH . 'wp-admin/includes/misc.php' );
} }
$privacy_policy_content = WP_Privacy_Policy_Content::get_default_content(); $privacy_policy_content = WP_Privacy_Policy_Content::get_default_content();
$privacy_policy_guid = get_option( 'home' ) . '/?page_id=3'; $privacy_policy_guid = get_option( 'home' ) . '/?page_id=3';
$wpdb->insert( $wpdb->insert(
$wpdb->posts, array( $wpdb->posts, array(
'post_author' => $user_id, 'post_author' => $user_id,