Changeset 2816
- Timestamp:
- 08/28/2005 05:35:06 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/rss-functions.php
r2810 r2816 40 40 # if PHP xml isn't compiled in, die 41 41 # 42 if (!function_exists('xml_parser_create')) { 43 die( "Failed to load PHP's XML Extension. " . 44 "http://www.php.net/manual/en/ref.xml.php", 45 E_USER_ERROR ); 46 } 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" ); 47 44 48 45 $parser = @xml_parser_create(); 49 46 50 if (!is_resource($parser)) 51 { 52 die( "Failed to create an instance of PHP's XML parser. " . 53 "http://www.php.net/manual/en/ref.xml.php", 54 E_USER_ERROR ); 55 } 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"); 56 49 57 50
Note: See TracChangeset
for help on using the changeset viewer.