Changeset 4252 for trunk/wp-includes/pluggable.php
- Timestamp:
- 09/26/2006 12:55:21 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/pluggable.php
r4144 r4252 258 258 // http://support.microsoft.com/kb/q176113/ 259 259 if ( !function_exists('wp_redirect') ) : 260 function wp_redirect($location ) {260 function wp_redirect($location, $status = 302) { 261 261 global $is_IIS; 262 262 … … 266 266 $strip = array('%0d', '%0a'); 267 267 $location = str_replace($strip, '', $location); 268 269 status_header($status); 268 270 269 271 if ($is_IIS)
Note: See TracChangeset
for help on using the changeset viewer.