Changeset 3083 for trunk/wp-includes/rss-functions.php
- Timestamp:
- 11/14/2005 10:21:39 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/rss-functions.php
r3057 r3083 41 41 # 42 42 if ( !function_exists('xml_parser_create') ) 43 die( "Failed to load PHP's XML Extension. http://www.php.net/manual/en/ref.xml.php" );43 trigger_error( "Failed to load PHP's XML Extension. http://www.php.net/manual/en/ref.xml.php" ); 44 44 45 45 $parser = @xml_parser_create(); 46 46 47 47 if ( !is_resource($parser) ) 48 die( "Failed to create an instance of PHP's XML parser. http://www.php.net/manual/en/ref.xml.php");48 trigger_error( "Failed to create an instance of PHP's XML parser. http://www.php.net/manual/en/ref.xml.php"); 49 49 50 50
Note: See TracChangeset
for help on using the changeset viewer.