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 02e9114cea..621e968fb7 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '5.0-alpha-42649'; +$wp_version = '5.0-alpha-42652'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.