- Timestamp:
- 05/01/2020 02:24:42 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/SimplePie/Decode/HTML/Entities.php
r22798 r47733 6 6 * Takes the hard work out of managing a complete RSS/Atom solution. 7 7 * 8 * Copyright (c) 2004-201 2, Ryan Parman, GeoffreySneddon, Ryan McCue, and contributors8 * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors 9 9 * All rights reserved. 10 10 * … … 34 34 * 35 35 * @package SimplePie 36 * @version 1.3.1 37 * @copyright 2004-2012 Ryan Parman, Geoffrey Sneddon, Ryan McCue 36 * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue 38 37 * @author Ryan Parman 39 * @author GeoffreySneddon38 * @author Sam Sneddon 40 39 * @author Ryan McCue 41 40 * @link http://simplepie.org/ SimplePie … … 119 118 return $this->data[$this->position++]; 120 119 } 121 else 122 { 123 return false; 124 } 120 121 return false; 125 122 } 126 123 … … 141 138 return $data; 142 139 } 143 else 144 { 145 return false; 146 } 140 141 return false; 147 142 } 148 143 … … 169 164 case "\x09": 170 165 case "\x0A": 171 case "\x0B":172 166 case "\x0B": 173 167 case "\x0C": … … 615 609 } 616 610 } 617
Note: See TracChangeset
for help on using the changeset viewer.