From 102273e472235a53adf8cb92de53bbb113c976ca Mon Sep 17 00:00:00 2001 From: Dominik Schilling Date: Sat, 29 Oct 2016 21:32:33 +0000 Subject: [PATCH] XML-RPC: Fix truncated warning message added in [38883]. See #37122. Built from https://develop.svn.wordpress.org/trunk@39007 git-svn-id: http://core.svn.wordpress.org/trunk@38949 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/IXR/class-IXR-message.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/IXR/class-IXR-message.php b/wp-includes/IXR/class-IXR-message.php index 613e972c65..69af8aa2c0 100644 --- a/wp-includes/IXR/class-IXR-message.php +++ b/wp-includes/IXR/class-IXR-message.php @@ -45,7 +45,7 @@ class IXR_Message function parse() { if ( ! function_exists( 'xml_parser_create' ) ) { - trigger_error( __( "PHP's XML extension is not available. Please contact your hosting provider to enable PHP's XML" ) ); + trigger_error( __( "PHP's XML extension is not available. Please contact your hosting provider to enable PHP's XML extension." ) ); return false; } diff --git a/wp-includes/version.php b/wp-includes/version.php index 00f89a7555..f279a9faf3 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.7-beta1-39006'; +$wp_version = '4.7-beta1-39007'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.