Changeset 22366 for trunk/wp-includes/SimplePie/IRI.php
- Timestamp:
- 11/05/2012 02:25:25 PM (14 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/SimplePie/IRI.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/SimplePie/IRI.php
r21644 r22366 34 34 * 35 35 * @package SimplePie 36 * @version 1.3 36 * @version 1.3.1 37 37 * @copyright 2004-2012 Ryan Parman, Geoffrey Sneddon, Ryan McCue 38 38 * @author Ryan Parman … … 391 391 else 392 392 { 393 trigger_error('This should never happen', E_USER_ERROR);394 die;393 // This can occur when a paragraph is accidentally parsed as a URI 394 return false; 395 395 } 396 396 } … … 825 825 { 826 826 $parsed = $this->parse_iri((string) $iri); 827 if (!$parsed) 828 { 829 return false; 830 } 827 831 828 832 $return = $this->set_scheme($parsed['scheme'])
Note: See TracChangeset
for help on using the changeset viewer.