Changeset 32990 for trunk/src/wp-includes/atomlib.php
- Timestamp:
- 06/28/2015 03:26:41 PM (11 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/atomlib.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/atomlib.php
r32471 r32990 88 88 var $current; 89 89 90 function AtomParser() { 90 /** 91 * PHP5 constructor. 92 */ 93 function __construct() { 91 94 92 95 $this->feed = new AtomFeed(); … … 95 98 $this->map_xmlns_func = create_function('$p,$n', '$xd = "xmlns"; if(strlen($n[0])>0) $xd .= ":{$n[0]}"; return "{$xd}=\"{$n[1]}\"";'); 96 99 } 100 101 /** 102 * PHP4 constructor. 103 */ 104 public function AtomParser() { 105 self::__construct(); 106 } 97 107 98 108 function _p($msg) {
Note: See TracChangeset
for help on using the changeset viewer.