External Libraries: After [37402], replace two more instances of `split()` with `explode()` in `wp-includes/atomlib.php`.
Props josephscott. Fixes #20673. Built from https://develop.svn.wordpress.org/trunk@37461 git-svn-id: http://core.svn.wordpress.org/trunk@37429 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
0016e4bb12
commit
9b56e3b7e4
|
@ -159,7 +159,7 @@ class AtomParser {
|
||||||
|
|
||||||
function start_element($parser, $name, $attrs) {
|
function start_element($parser, $name, $attrs) {
|
||||||
|
|
||||||
$tag = array_pop(split(":", $name));
|
$tag = array_pop(explode(":", $name));
|
||||||
|
|
||||||
switch($name) {
|
switch($name) {
|
||||||
case $this->NS . ':feed':
|
case $this->NS . ':feed':
|
||||||
|
@ -238,7 +238,7 @@ class AtomParser {
|
||||||
|
|
||||||
function end_element($parser, $name) {
|
function end_element($parser, $name) {
|
||||||
|
|
||||||
$tag = array_pop(split(":", $name));
|
$tag = array_pop(explode(":", $name));
|
||||||
|
|
||||||
$ccount = count($this->in_content);
|
$ccount = count($this->in_content);
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.6-alpha-37460';
|
$wp_version = '4.6-alpha-37461';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue