diff --git a/ChangeLog b/ChangeLog index b723aadb1..3eab2d3fc 100755 --- a/ChangeLog +++ b/ChangeLog @@ -10,6 +10,8 @@ $Source$ . * main.php3: tried a fix against bug #510223 (Create Database link) thanks to Purodha B Blissenbach . + * libraries/auth/*: patch #522671 - Add charset when asking for auth, + thanks to "nijel". 2002-02-24 Loïc Chapeaux * lang/german.inc.php3: updated thanks to Alexander M. Turek. diff --git a/libraries/auth/config.auth.lib.php3 b/libraries/auth/config.auth.lib.php3 index 4a9301327..362d5a25d 100644 --- a/libraries/auth/config.auth.lib.php3 +++ b/libraries/auth/config.auth.lib.php3 @@ -82,6 +82,9 @@ if (!defined('PMA_CONFIG_AUTH_INCLUDED')) { . $cfgServer['host'] . $server_port . $server_socket . ', ' . $cfgServer['user'] . ', ' . $cfgServer['password'] . ')'; + + // Defines the charset to be used + header('Content-Type: text/html; charset=' . $GLOBALS['charset']); ?>