Upgrade 1-11.38

This commit is contained in:
xesmyd
2026-03-30 14:10:30 +02:00
parent f2a7e6d1fc
commit ac648ef29d
24665 changed files with 69682 additions and 2205004 deletions
+8 -8
View File
@@ -1,20 +1,20 @@
<!doctype html>
<html lang="<?php print $lang; ?>" class="h5p-iframe">
<html lang="<?php echo htmlspecialchars($lang, ENT_QUOTES, 'UTF-8'); ?>" class="h5p-iframe">
<head>
<meta charset="utf-8">
<title><?php print $content['title']; ?></title>
<title><?php echo htmlspecialchars($content['title'], ENT_QUOTES, 'UTF-8'); ?></title>
<?php for ($i = 0, $s = count($scripts); $i < $s; $i++): ?>
<script src="<?php print $scripts[$i]; ?>"></script>
<script src="<?php echo htmlspecialchars($scripts[$i], ENT_QUOTES, 'UTF-8'); ?>"></script>
<?php endfor; ?>
<?php for ($i = 0, $s = count($styles); $i < $s; $i++): ?>
<link rel="stylesheet" href="<?php print $styles[$i]; ?>">
<link rel="stylesheet" href="<?php echo htmlspecialchars($styles[$i], ENT_QUOTES, 'UTF-8'); ?>">
<?php endfor; ?>
<?php if (!empty($additional_embed_head_tags)): print implode("\n", $additional_embed_head_tags); endif; ?>
<?php if (!empty($additional_embed_head_tags)): echo implode("\n", $additional_embed_head_tags); endif; ?>
</head>
<body>
<div class="h5p-content" data-content-id="<?php print $content['id']; ?>"></div>
<div class="h5p-content" data-content-id="<?php echo intval($content['id']); ?>"></div>
<script>
H5PIntegration = <?php print json_encode($integration); ?>;
H5PIntegration = <?php echo json_encode($integration); ?>;
</script>
</body>
</html>
</html>