XML-RPC: Fix truncated warning message added in [38883].

See #37122.

git-svn-id: https://develop.svn.wordpress.org/trunk@39007 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dominik Schilling (ocean90) 2016-10-29 21:31:29 +00:00
parent ea885d3a26
commit 249bde034d
1 changed files with 1 additions and 1 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;
}