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:
Andrew Ozz 2018-04-16 10:14:21 +00:00
parent f1e065b13b
commit 280aeff5d2
2 changed files with 3 additions and 3 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
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,

View File

@ -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.