aboutsummaryrefslogtreecommitdiff
path: root/app/install.php
diff options
context:
space:
mode:
authorGravatar maTh <math-home@web.de> 2021-12-03 00:57:32 +0100
committerGravatar GitHub <noreply@github.com> 2021-12-03 00:57:32 +0100
commita54aa19dc7f8cd344cdfb199ee94c01e0b90becc (patch)
treebcbfa7efbefaa459accf71dafc02f210e965bc28 /app/install.php
parent00dbde68fbaf7da68ccf191c33f2de88d3603aa8 (diff)
Fix: double main tags (#4014)
* replace div with main * include the slider into main * format source * add close icon for the extension slider * replace div with main * Update shortcut.phtml * fixed the nits
Diffstat (limited to 'app/install.php')
-rw-r--r--app/install.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/install.php b/app/install.php
index cd2845fd2..402de91a3 100644
--- a/app/install.php
+++ b/app/install.php
@@ -678,7 +678,7 @@ if (_t('gen.dir') === 'rtl') {
</div>
</header>
-<main id="global">
+<div id="global">
<nav class="nav nav-list aside">
<div class="nav-header"><?= _t('install.steps') ?></div>
<ol>
@@ -716,7 +716,7 @@ if (_t('gen.dir') === 'rtl') {
</ol>
</nav>
- <div class="post">
+ <main class="post">
<h1><?= _t('install.title') ?>: <?= _t('install.step', STEP + 1) ?></h1>
<?php
switch (STEP) {
@@ -741,8 +741,8 @@ if (_t('gen.dir') === 'rtl') {
break;
}
?>
- </div>
-</main>
+ </main>
+</div>
<script src="../scripts/install.js?<?= @filemtime(PUBLIC_PATH . '/scripts/install.js') ?>"></script>
</body>
</html>