Opened 7 years ago
Closed 6 years ago
#2108 closed defect (bug) (fixed)
redirect does not always work
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Priority: | normal | Milestone: | 2.1 |
| Component: | Administration | Version: | 2.0 |
| Severity: | major | Keywords: | |
| Cc: |
Description
e.g. using:
/wp-admin/profile.php
does not always redirect on a Windows machine when the profile is updated (leaves a blank screen).
Change History (7)
function wp_goto($location) {
if (strstr($_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS')) {
header("Refresh: 0; URL=" . $location);
}
else {
header("Location: " . $location);
}
}
http://wordpress.org/support/topic/14772
might also be relevant.
comment:4
masquerade — 7 years ago
- Milestone set to 2.0
Note: See
TracTickets for help on using
tickets.

function wp_goto($location) {
}