Make WordPress Core

Changeset 35364


Ignore:
Timestamp:
10/23/2015 02:00:21 AM (9 years ago)
Author:
dd32
Message:

Update variable naming after [35279].

See #29957.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-IXR.php

    r35279 r35364  
    271271
    272272        // 256Kb, parse in chunks to avoid the RAM usage on very large messages
    273         $xmlrpc_memory_limit = 262144;
     273        $chunk_size = 262144;
    274274
    275275        /**
     
    278278         * @since 4.4.0
    279279         *
    280          * @param int $xmlrpc_memory_limit Default value of memory allotted.
     280         * @param int $chunk_size Chunk size to parse in bytes.
    281281         */
    282         $chunk_size = apply_filters( 'xmlrpc_chunk_parsing_size', $xmlrpc_memory_limit );
     282        $chunk_size = apply_filters( 'xmlrpc_chunk_parsing_size', $chunk_size );
    283283
    284284        $final = false;
Note: See TracChangeset for help on using the changeset viewer.