From 939b2ba5f486b0dab36c4436344cc0c8ffe3f771 Mon Sep 17 00:00:00 2001 From: Anaggh S Date: Sat, 4 Aug 2018 19:28:26 +0530 Subject: [PATCH] Fix install script, allow navbar for md --- bl-kernel/admin/themes/booty/html/navbar.php | 4 ++-- install.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bl-kernel/admin/themes/booty/html/navbar.php b/bl-kernel/admin/themes/booty/html/navbar.php index 7dc031ec..cd0521fd 100644 --- a/bl-kernel/admin/themes/booty/html/navbar.php +++ b/bl-kernel/admin/themes/booty/html/navbar.php @@ -1,4 +1,4 @@ - diff --git a/install.php b/install.php index 7eb042ab..253016b7 100644 --- a/install.php +++ b/install.php @@ -128,7 +128,7 @@ include(PATH_HELPERS.'valid.class.php'); include(PATH_HELPERS.'text.class.php'); include(PATH_HELPERS.'log.class.php'); include(PATH_HELPERS.'date.class.php'); -include(PATH_KERNEL.'dblanguage.class.php'); +include(PATH_KERNEL.'language.class.php'); // --- LANGUAGE and LOCALE --- // Try to detect the language from browser or headers @@ -155,7 +155,7 @@ foreach ($languageFiles as $fname=>$native) { } } -$Language = new Language($finalLanguage); +$language = new Language($finalLanguage); // Set locale setlocale(LC_ALL, $localeFromHTTP);