bug #1523784, blank page after Edit in IE6 via IIS

This commit is contained in:
Marc Delisle
2006-07-26 21:13:34 +00:00
parent 7e6b238fb9
commit 35b1ab1f88
2 changed files with 8 additions and 4 deletions

View File

@@ -9,6 +9,8 @@ $Source$
2006-07-26 Marc Delisle <lem9@users.sourceforge.net>
* server_privileges.php: bug #1526557, display error when admin
lacks some privileges and tries to do a privilege change
* libraries/common.lib.php: bug #1523784, blank page after Edit
in IE6 via IIS
2006-07-22 Marc Delisle <lem9@users.sourceforge.net>
* libraries/display_import.lib.php: the Character set of the file

View File

@@ -1100,11 +1100,13 @@ if (!defined('PMA_MINIMUM_COMMON')) {
}
} else {
session_write_close();
if (PMA_IS_IIS) {
header('Refresh: 0; ' . $uri);
} else {
// bug #1523784: IE6 does not like 'Refresh: 0', it
// results in a blank page
//if (PMA_IS_IIS) {
// header('Refresh: 0; ' . $uri);
//} else {
header('Location: ' . $uri);
}
//}
}
}
}