add charset to language string to remove PMA warning. See #1052

This commit is contained in:
Antoine Beaupré 2008-05-12 20:54:21 +00:00
parent eabfd5d1c9
commit 7bc627a203
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ if (!$r=$mysql->get_dblist()) {
} else {
setcookie("REMOTE_USER",$r[0]["login"]);
setcookie("REMOTE_PASSWORD",$r[0]["pass"]);
if ($lang) $l="&lang=".substr($lang,0,2);
if ($lang) $l="&lang=".substr($lang,0,2).'-utf-8';
// TODO : make it an absolute url ! (even in httpS :))
header("Location: /admin/sql/index.php?server=1$l");
exit();