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:
parent
fd40a16ad1
commit
102273e472
|
@ -45,7 +45,7 @@ class IXR_Message
|
||||||
function parse()
|
function parse()
|
||||||
{
|
{
|
||||||
if ( ! function_exists( 'xml_parser_create' ) ) {
|
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;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @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.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue