Make WordPress Core

Ticket #21990: 21990.diff

File 21990.diff, 516 bytes (added by nacin, 12 years ago)
  • wp-includes/SimplePie/Sanitize.php

     
    246246
    247247                        if ($type & (SIMPLEPIE_CONSTRUCT_HTML | SIMPLEPIE_CONSTRUCT_XHTML))
    248248                        {
    249 
     249                                if ( ! class_exists( 'DOMDocument' ) )
     250                                {
     251                                        return '';
     252                                }
    250253                                $document = new DOMDocument();
    251254                                $document->encoding = 'UTF-8';
    252255                                $data = $this->preprocess($data, $type);