Changeset 36446
- Timestamp:
- 02/02/2016 04:33:02 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/pluggable.php
r36445 r36446 1327 1327 $test = ( $cut = strpos($location, '?') ) ? substr( $location, 0, $cut ) : $location; 1328 1328 1329 $lp = parse_url($test); 1329 // @-operator is used to prevent possible warnings in PHP < 5.3.3. 1330 $lp = @parse_url($test); 1330 1331 1331 1332 // Give up if malformed URL
Note: See TracChangeset
for help on using the changeset viewer.