Changeset 37461 for trunk/src/wp-includes/atomlib.php
- Timestamp:
- 05/19/2016 12:05:02 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/atomlib.php
r37402 r37461 160 160 function start_element($parser, $name, $attrs) { 161 161 162 $tag = array_pop( split(":", $name));162 $tag = array_pop(explode(":", $name)); 163 163 164 164 switch($name) { … … 239 239 function end_element($parser, $name) { 240 240 241 $tag = array_pop( split(":", $name));241 $tag = array_pop(explode(":", $name)); 242 242 243 243 $ccount = count($this->in_content);
Note: See TracChangeset
for help on using the changeset viewer.