X-Git-Url: https://git.p6c8.net/jirafeau.git/blobdiff_plain/ae8de09d6ab7998ef857b0bfd1b2406c83783b99..8d57bb370f75c11645d4636528b1ab401ed35897:/lib/lang.php?ds=sidebyside 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'];