Changeset 5993
- Timestamp:
- 08/30/07 18:13:48 (1 year ago)
- Files:
-
- branches/2.0/wp-includes/pluggable-functions.php (modified) (1 diff)
- branches/2.2/wp-includes/pluggable.php (modified) (1 diff)
- trunk/wp-includes/pluggable.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
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
