[concrete5] Set attribute value in multilingual site
<?php defined('C5_EXECUTE') or die("Access Denied.");
Loader::model('section', 'multilingual');
$ms = MultilingualSection::getCurrentSection();
if (is_object($ms)) {
$lang = $ms->getLanguage();
} else {
$lang = LANGUAGE;
}
?>
<!DOCTYPE html>
<html lang="<?php echo $lang?>">