Make WordPress Core

Changeset 3083


Ignore:
Timestamp:
11/14/2005 10:21:39 AM (21 years ago)
Author:
matt
Message:

Don't die on me now! Fixes #1631

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/rss-functions.php

    r3057 r3083  
    4141                #
    4242                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" );
    4444               
    4545                $parser = @xml_parser_create();
    4646               
    4747                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");
    4949
    5050               
Note: See TracChangeset for help on using the changeset viewer.