diff --git a/wp-includes/atomlib.php b/wp-includes/atomlib.php index 271635fe45..4ec562c64b 100644 --- a/wp-includes/atomlib.php +++ b/wp-includes/atomlib.php @@ -313,7 +313,7 @@ class AtomParser { function ns_to_prefix($qname, $attr=false) { # split 'http://www.w3.org/1999/xhtml:div' into ('http','//www.w3.org/1999/xhtml','div') - $components = split(":", $qname); + $components = explode(":", $qname); # grab the last one (e.g 'div') $name = array_pop($components); diff --git a/wp-includes/rss.php b/wp-includes/rss.php index 548ccf2349..71146edc3c 100644 --- a/wp-includes/rss.php +++ b/wp-includes/rss.php @@ -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; diff --git a/wp-includes/version.php b/wp-includes/version.php index 1757c0651a..0712d342f9 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.6-alpha-37383'; +$wp_version = '4.6-alpha-37402'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.