diff --git a/wp-includes/update.php b/wp-includes/update.php
index 375c86b97675fd6d7df650c19c7af7249dde88f3..c7dccdc3adb814d626dbd3e2bb7f2208a1ce6fdb 100644
--- a/wp-includes/update.php
+++ b/wp-includes/update.php
@@ -156,11 +156,7 @@ function wp_version_check( $extra_stats = array(), $force_check = false ) {
 	$options = array(
         'timeout' => $doing_cron ? 30 : 3,
 		'user-agent' => 'WordPress/' . $wp_version . ';  http://wordpress.org',
-		'headers' => array(
-			'wp_install' => home_url( '/' ),
-			'wp_blog' => home_url( '/' )
-		),
-		'body'       => $post_body,
+		'body' => $post_body,
 	);
 
 	$response = wp_remote_post( $url, $options );