Changeset 35279
- Timestamp:
- 10/20/2015 05:18:15 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-IXR.php
r35095 r35279 272 272 // 256Kb, parse in chunks to avoid the RAM usage on very large messages 273 273 $xmlrpc_memory_limit = 262144; 274 274 275 /** 275 * Filter the maximum memorythat can be used to parse an XML-RPC reponse message.276 * Filter the chunk size that can be used to parse an XML-RPC reponse message. 276 277 * 277 278 * @since 4.4.0 … … 279 280 * @param int $xmlrpc_memory_limit Default value of memory allotted. 280 281 */ 281 $chunk_size = apply_filters( 'xmlrpc_ memory_limit', $xmlrpc_memory_limit );282 $chunk_size = apply_filters( 'xmlrpc_chunk_parsing_size', $xmlrpc_memory_limit ); 282 283 283 284 $final = false;
Note: See TracChangeset
for help on using the changeset viewer.