X-Git-Url: https://git.p6c8.net/jirafeau_project.git/blobdiff_plain/134fa87d899035f4ca5ebd2755f3ff4c425c2959..6cbefa8112560ad1ba486652153e0658259de094:/lib/lang.php?ds=inline diff --git a/lib/lang.php b/lib/lang.php index 4502f5a..da28a81 100644 --- a/lib/lang.php +++ b/lib/lang.php @@ -37,7 +37,12 @@ function t ($text) /* Detect user's langage if we are in automatic mode. */ if (strcmp ($cfg['lang'], 'auto') == 0) - $l = substr ($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2); + { + if (isset ($_SERVER['HTTP_ACCEPT_LANGUAGE'])) + $l = substr ($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2); + else + $l = "en"; + } else $l = $cfg['lang'];