From b89670b0f6f34bfbdc8c32aa8609b1f2bed94f5d Mon Sep 17 00:00:00 2001 From: Dion Hulse Date: Fri, 23 Oct 2015 02:00:21 +0000 Subject: [PATCH] Update variable naming after [35279]. See #29957. git-svn-id: https://develop.svn.wordpress.org/trunk@35364 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-IXR.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/wp-includes/class-IXR.php b/src/wp-includes/class-IXR.php index 485f63eb5d..2fee046d41 100644 --- a/src/wp-includes/class-IXR.php +++ b/src/wp-includes/class-IXR.php @@ -270,16 +270,16 @@ class IXR_Message xml_set_character_data_handler($this->_parser, 'cdata'); // 256Kb, parse in chunks to avoid the RAM usage on very large messages - $xmlrpc_memory_limit = 262144; + $chunk_size = 262144; /** * Filter the chunk size that can be used to parse an XML-RPC reponse message. * * @since 4.4.0 * - * @param int $xmlrpc_memory_limit Default value of memory allotted. + * @param int $chunk_size Chunk size to parse in bytes. */ - $chunk_size = apply_filters( 'xmlrpc_chunk_parsing_size', $xmlrpc_memory_limit ); + $chunk_size = apply_filters( 'xmlrpc_chunk_parsing_size', $chunk_size ); $final = false; do {