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:
parent
5786dee456
commit
bb4dff10f6
|
@ -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,
|
||||||
|
|
Loading…
Reference in New Issue