Make WordPress Core


Ignore:
Timestamp:
10/24/2016 04:44:07 AM (8 years ago)
Author:
pento
Message:

General: Check to see that the PHP-XML module is enabled before using XML functions.

There are a handful of places where we don't check that the XML functions exist before we use them. Ubuntu's PHP 7 packages don't include PHP-XML by default, increasing the chance of this causing issues.

Props kraftbj, markoheijnen.
Fixes #37122.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/link-parse-opml.php

    r32642 r38883  
    7373
    7474// Create an XML parser
     75if ( ! 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
    7580$xml_parser = xml_parser_create();
    7681
Note: See TracChangeset for help on using the changeset viewer.