Merge branch 'MDL-77735-master' of https://github.com/sarjona/moodle

This commit is contained in:
Andrew Nicols 2023-04-18 12:11:08 +08:00
commit 825e621264

View File

@ -2286,7 +2286,7 @@ function get_html_lang($dir = false) {
global $CFG;
$currentlang = current_language();
if ($currentlang !== $CFG->lang && !get_string_manager()->translation_exists($currentlang)) {
if (isset($CFG->lang) && $currentlang !== $CFG->lang && !get_string_manager()->translation_exists($currentlang)) {
// Use the default site language when the current language is not available.
$currentlang = $CFG->lang;
// Fix the current language.