]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/rss.php
WordPress 4.6.3-scripts
[autoinstalls/wordpress.git] / wp-includes / rss.php
index 67bac6bd5582b55d35eceb5c676a8ac81abfa342..4c3fb15160b3b683eb5804f8a5d75b5ceba64629 100644 (file)
@@ -16,7 +16,7 @@
 /**
  * Deprecated. Use SimplePie (class-simplepie.php) instead.
  */
-_deprecated_file( basename( __FILE__ ), '3.0', WPINC . '/class-simplepie.php' );
+_deprecated_file( basename( __FILE__ ), '3.0.0', WPINC . '/class-simplepie.php' );
 
 /**
  * Fires before MagpieRSS is loaded, to optionally replace it.
@@ -63,12 +63,12 @@ class MagpieRSS {
                # if PHP xml isn't compiled in, die
                #
                if ( !function_exists('xml_parser_create') )
-                       trigger_error( "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. https://secure.php.net/manual/en/ref.xml.php" );
 
                $parser = @xml_parser_create();
 
                if ( !is_resource($parser) )
-                       trigger_error( "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. https://secure.php.net/manual/en/ref.xml.php");
 
                $this->parser = $parser;
 
@@ -114,7 +114,7 @@ class MagpieRSS {
                // check for a namespace, and split if found
                $ns     = false;
                if ( strpos( $element, ':' ) ) {
-                       list($ns, $el) = split( ':', $element, 2);
+                       list($ns, $el) = explode( ':', $element, 2);
                }
                if ( $ns and $ns != 'rdf' ) {
                        $this->current_namespace = $ns;
@@ -599,7 +599,7 @@ function _response_to_rss ($resp) {
        if ( $rss && (!isset($rss->ERROR) || !$rss->ERROR) ) {
 
                // find Etag, and Last-Modified
-               foreach( (array) $resp->headers as $h) {
+               foreach ( (array) $resp->headers as $h) {
                        // 2003-03-02 - Nicola Asuni (www.tecnick.com) - fixed bug "Undefined offset: 1"
                        if (strpos($h, ": ")) {
                                list($field, $val) = explode(": ", $h, 2);