summaryrefslogtreecommitdiffstats
path: root/wp-inst/wp-includes/rss-functions.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2005-11-14 16:04:14 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2005-11-14 16:04:14 +0000
commit19f55afaf36cf96e43234ea9655f5752cadfaab3 (patch)
tree4c249fad7b1dbdeb62a86ea6859ab27f61462ed5 /wp-inst/wp-includes/rss-functions.php
parent37f4745bd187688d671658a709ca9cffb43efbca (diff)
downloadwordpress-mu-19f55afaf36cf96e43234ea9655f5752cadfaab3.tar.gz
wordpress-mu-19f55afaf36cf96e43234ea9655f5752cadfaab3.tar.xz
wordpress-mu-19f55afaf36cf96e43234ea9655f5752cadfaab3.zip
WP Merge
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@434 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-inst/wp-includes/rss-functions.php')
-rw-r--r--wp-inst/wp-includes/rss-functions.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/wp-inst/wp-includes/rss-functions.php b/wp-inst/wp-includes/rss-functions.php
index 6efe646..71e4151 100644
--- a/wp-inst/wp-includes/rss-functions.php
+++ b/wp-inst/wp-includes/rss-functions.php
@@ -40,12 +40,12 @@ class MagpieRSS {
# if PHP xml isn't compiled in, die
#
if ( !function_exists('xml_parser_create') )
- die( "Failed to load PHP's XML Extension. http://www.php.net/manual/en/ref.xml.php" );
+ trigger_error( "Failed to load PHP's XML Extension. http://www.php.net/manual/en/ref.xml.php" );
$parser = @xml_parser_create();
if ( !is_resource($parser) )
- die( "Failed to create an instance of PHP's XML parser. http://www.php.net/manual/en/ref.xml.php");
+ trigger_error( "Failed to create an instance of PHP's XML parser. http://www.php.net/manual/en/ref.xml.php");
$this->parser = $parser;