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
This commit is contained in:
Dominik Schilling 2016-10-29 21:32:33 +00:00
parent fd40a16ad1
commit 102273e472
2 changed files with 2 additions and 2 deletions

View File

@ -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;
}

View File

@ -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.