diff --git a/ChangeLog b/ChangeLog index 854522e54..6fd05f86a 100755 --- a/ChangeLog +++ b/ChangeLog @@ -9,6 +9,8 @@ $Source$ 2006-07-26 Marc Delisle * 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 * libraries/display_import.lib.php: the Character set of the file diff --git a/libraries/common.lib.php b/libraries/common.lib.php index c4ee97e9c..24e3be253 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -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); - } + //} } } }