From 249bde034d3623c38bd11ab2b6b868c508e1da9c Mon Sep 17 00:00:00 2001 From: "Dominik Schilling (ocean90)" Date: Sat, 29 Oct 2016 21:31:29 +0000 Subject: [PATCH] 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 --- src/wp-includes/IXR/class-IXR-message.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/IXR/class-IXR-message.php b/src/wp-includes/IXR/class-IXR-message.php index 613e972c65..69af8aa2c0 100644 --- a/src/wp-includes/IXR/class-IXR-message.php +++ b/src/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; }