Fix lang exist
This commit is contained in:
parent
2bbd0aba16
commit
2854c97148
|
@ -6,7 +6,6 @@
|
|||
* Author Diego Najar
|
||||
* Bludit is opensource software licensed under the MIT license.
|
||||
*/
|
||||
|
||||
// Security constant
|
||||
define('BLUDIT', true);
|
||||
|
||||
|
@ -61,7 +60,12 @@ include(PATH_ABSTRACT.'dbjson.class.php');
|
|||
include(PATH_KERNEL.'dblanguage.class.php');
|
||||
|
||||
// Load language
|
||||
$locale = Locale::acceptFromHttp($_SERVER['HTTP_ACCEPT_LANGUAGE']);
|
||||
$HTTP_ACCEPT_LANGUAGE = Locale::acceptFromHttp($_SERVER['HTTP_ACCEPT_LANGUAGE']);
|
||||
if (file_exists(PATH_LANGUAGES.$HTTP_ACCEPT_LANGUAGE. '.json')) {
|
||||
$locale = $HTTP_ACCEPT_LANGUAGE;
|
||||
} else {
|
||||
$locale = 'en_US';
|
||||
}
|
||||
$Language = new dbLanguage($locale);
|
||||
|
||||
// ============================================================================
|
||||
|
|
Loading…
Reference in New Issue