Changeset 37402
- Timestamp:
- 05/07/2016 03:58:42 PM (9 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/atomlib.php
r32990 r37402 314 314 function ns_to_prefix($qname, $attr=false) { 315 315 # split 'http://www.w3.org/1999/xhtml:div' into ('http','//www.w3.org/1999/xhtml','div') 316 $components = split(":", $qname);316 $components = explode(":", $qname); 317 317 318 318 # grab the last one (e.g 'div') -
trunk/src/wp-includes/rss.php
r33734 r37402 115 115 $ns = false; 116 116 if ( strpos( $element, ':' ) ) { 117 list($ns, $el) = split( ':', $element, 2);117 list($ns, $el) = explode( ':', $element, 2); 118 118 } 119 119 if ( $ns and $ns != 'rdf' ) {
Note: See TracChangeset
for help on using the changeset viewer.