Changeset 38883
- Timestamp:
- 10/24/2016 04:44:07 AM (8 years ago)
- Location:
- trunk/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/link-parse-opml.php
r32642 r38883 73 73 74 74 // Create an XML parser 75 if ( ! function_exists( 'xml_parser_create' ) ) { 76 trigger_error( __( "PHP's XML extension is not available. Please contact your hosting provider to enable PHP's XML extension." ) ); 77 wp_die( __( "PHP's XML extension is not available. Please contact your hosting provider to enable PHP's XML extension." ) ); 78 } 79 75 80 $xml_parser = xml_parser_create(); 76 81 -
trunk/src/wp-includes/IXR/class-IXR-message.php
r38389 r38883 45 45 function parse() 46 46 { 47 if ( ! function_exists( 'xml_parser_create' ) ) { 48 trigger_error( __( "PHP's XML extension is not available. Please contact your hosting provider to enable PHP's XML" ) ); 49 return false; 50 } 51 47 52 // first remove the XML declaration 48 53 // merged from WP #10698 - this method avoids the RAM usage of preg_replace on very large messages -
trunk/src/wp-includes/atomlib.php
r37461 r38883 121 121 122 122 array_unshift($this->ns_contexts, array()); 123 124 if ( ! function_exists( 'xml_parser_create_ns' ) ) { 125 trigger_error( __( "PHP's XML extension is not available. Please contact your hosting provider to enable PHP's XML extension." ) ); 126 return false; 127 } 123 128 124 129 $parser = xml_parser_create_ns(); -
trunk/src/wp-includes/feed.php
r38470 r38883 539 539 } 540 540 541 if ( ! function_exists( 'xml_parser_create' ) ) { 542 trigger_error( __( "PHP's XML extension is not available. Please contact your hosting provider to enable PHP's XML extension." ) ); 543 544 return array( 'html', "<![CDATA[$data]]>" ); 545 } 546 541 547 $parser = xml_parser_create(); 542 548 xml_parse($parser, '<div>' . $data . '</div>', true); -
trunk/src/wp-includes/rss.php
r37985 r38883 61 61 function __construct( $source ) { 62 62 63 # if PHP xml isn't compiled in, die63 # Check if PHP xml isn't compiled 64 64 # 65 if ( !function_exists('xml_parser_create') ) 66 trigger_error( "Failed to load PHP's XML Extension. https://secure.php.net/manual/en/ref.xml.php" ); 67 68 $parser = @xml_parser_create(); 69 70 if ( !is_resource($parser) ) 71 trigger_error( "Failed to create an instance of PHP's XML parser. https://secure.php.net/manual/en/ref.xml.php"); 65 if ( ! function_exists('xml_parser_create') ) { 66 return trigger_error( "PHP's XML extension is not available. Please contact your hosting provider to enable PHP's XML extension." ); 67 } 68 69 $parser = xml_parser_create(); 72 70 73 71 $this->parser = $parser;
Note: See TracChangeset
for help on using the changeset viewer.