diff --git a/wp-admin/includes/post.php b/wp-admin/includes/post.php index 51ce4c0cf7..c169bd7541 100644 --- a/wp-admin/includes/post.php +++ b/wp-admin/includes/post.php @@ -687,7 +687,7 @@ function post_exists($title, $content = '', $date = '') { } if ( !empty ( $content ) ) { - $query .= 'AND post_content = %s'; + $query .= ' AND post_content = %s'; $args[] = $post_content; } diff --git a/wp-includes/version.php b/wp-includes/version.php index 92a15fd913..4cd8725f3e 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-36112'; +$wp_version = '4.5-alpha-36113'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.