Changeset 4252
- Timestamp:
- 09/26/06 00:55:21 (2 years ago)
- Files:
-
- trunk/wp-includes/pluggable.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
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)
