diff --git a/wp-includes/IXR/class-IXR-message.php b/wp-includes/IXR/class-IXR-message.php
index 69af8aa2c0..013eae399a 100644
--- a/wp-includes/IXR/class-IXR-message.php
+++ b/wp-includes/IXR/class-IXR-message.php
@@ -9,12 +9,12 @@
  */
 class IXR_Message
 {
-    var $message;
-    var $messageType;  // methodCall / methodResponse / fault
-    var $faultCode;
-    var $faultString;
-    var $methodName;
-    var $params;
+    var $message     = false;
+    var $messageType = false;  // methodCall / methodResponse / fault
+    var $faultCode   = false;
+    var $faultString = false;
+    var $methodName  = '';
+    var $params      = array();
 
     // Current variable stacks
     var $_arraystructs = array();   // The stack used to keep track of the current array/struct
diff --git a/wp-includes/version.php b/wp-includes/version.php
index 5262ee68f3..92905d87a2 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -4,7 +4,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '4.9.5-alpha-42805';
+$wp_version = '4.9.5-alpha-42806';
 
 /**
  * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.