Changeset 5993
- Timestamp:
- 08/30/2007 06:13:48 PM (17 years ago)
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0/wp-includes/pluggable-functions.php
r5992 r5993 260 260 global $is_IIS; 261 261 262 $location = preg_replace('|[^a-z0-9-~ \+_\.\?#=&;,/:%]|i', '', $location);262 $location = preg_replace('|[^a-z0-9-~+_.?#=&;,/:%]|i', '', $location); 263 263 264 264 // remove %0d and %0a from location -
branches/2.2/wp-includes/pluggable.php
r5991 r5993 318 318 return false; 319 319 320 $location = preg_replace('|[^a-z0-9-~ \+_\.\?#=&;,/:%]|i', '', $location);320 $location = preg_replace('|[^a-z0-9-~+_.?#=&;,/:%]|i', '', $location); 321 321 $location = wp_kses_no_null($location); 322 322 -
trunk/wp-includes/pluggable.php
r5990 r5993 399 399 return false; 400 400 401 $location = preg_replace('|[^a-z0-9-~ \+_\.\?#=&;,/:%]|i', '', $location);401 $location = preg_replace('|[^a-z0-9-~+_.?#=&;,/:%]|i', '', $location); 402 402 $location = wp_kses_no_null($location); 403 403
Note: See TracChangeset
for help on using the changeset viewer.