Fix typo (missing `!`).
See #43491. Built from https://develop.svn.wordpress.org/trunk@42982 git-svn-id: http://core.svn.wordpress.org/trunk@42811 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
f1e065b13b
commit
280aeff5d2
|
@ -308,13 +308,13 @@ As a new WordPress user, you should go to <a href=\"%s\">your dashboard</a> to d
|
|||
);
|
||||
|
||||
// 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' );
|
||||
}
|
||||
|
||||
$privacy_policy_content = WP_Privacy_Policy_Content::get_default_content();
|
||||
|
||||
$privacy_policy_guid = get_option( 'home' ) . '/?page_id=3';
|
||||
|
||||
$wpdb->insert(
|
||||
$wpdb->posts, array(
|
||||
'post_author' => $user_id,
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.0-alpha-42981';
|
||||
$wp_version = '5.0-alpha-42982';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue