Changeset 59109
- Timestamp:
- 09/27/2024 07:58:49 PM (9 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/includes/utils.php
r59055 r59109 305 305 $parse = xml_parse( $this->xml, $in, true ); 306 306 if ( ! $parse ) { 307 t rigger_error(307 throw new Exception( 308 308 sprintf( 309 309 'XML error: %s at line %d', 310 310 xml_error_string( xml_get_error_code( $this->xml ) ), 311 311 xml_get_current_line_number( $this->xml ) 312 ), 313 E_USER_ERROR 312 ) 314 313 ); 315 314 xml_parser_free( $this->xml );
Note: See TracChangeset
for help on using the changeset viewer.