added encoding fix in HTTP header

This commit is contained in:
Roland Gruber 2004-12-09 18:18:34 +00:00
parent 11245cba95
commit d5dd1fbfcf
1 changed files with 9 additions and 8 deletions

View File

@ -28,15 +28,16 @@ include_once("status.inc");
// sets language settings for automatic translation
function setlanguage() {
if ($_SESSION['language']) {
$language = explode(":", $_SESSION['language']);
putenv("LANG=" . $language[0]); // e.g. LANG=de_DE
setlocale(LC_ALL, $language[0]); // set LC_ALL to de_DE
$locdir = substr(__FILE__, 0, strlen(__FILE__) - 15) . "/locale"; // set path to translations
bindtextdomain("messages", $locdir);
textdomain("messages");
if (!isset($_SESSION['language'])) {
$_SESSION['language'] = "en_GB.:ISO-8859-1:English (Great Britain)";
}
else echo _("Language not defined in session!");
$language = explode(":", $_SESSION['language']);
putenv("LANG=" . $language[0]); // e.g. LANG=de_DE
setlocale(LC_ALL, $language[0]); // set LC_ALL to de_DE
$locdir = substr(__FILE__, 0, strlen(__FILE__) - 15) . "/locale"; // set path to translations
bindtextdomain("messages", $locdir);
textdomain("messages");
header("Content-type: text/html; charset=" . $language[1], true);
}
// returns an array of string with all available configuration profiles (without .conf)