Changeset 59056 for trunk/src/wp-includes/IXR/class-IXR-message.php
- Timestamp:
- 09/18/2024 06:02:43 PM (21 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/IXR/class-IXR-message.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/IXR/class-IXR-message.php
r55105 r59056 94 94 xml_parser_set_option($this->_parser, XML_OPTION_CASE_FOLDING, false); 95 95 // Set XML parser callback functions 96 xml_set_object($this->_parser, $this); 97 xml_set_element_handler($this->_parser, 'tag_open', 'tag_close'); 98 xml_set_character_data_handler($this->_parser, 'cdata'); 96 xml_set_element_handler($this->_parser, array($this, 'tag_open'), array($this, 'tag_close')); 97 xml_set_character_data_handler($this->_parser, array($this, 'cdata')); 99 98 100 99 // 256Kb, parse in chunks to avoid the RAM usage on very large messages
Note: See TracChangeset
for help on using the changeset viewer.