diff options
| author | 2021-12-03 00:57:32 +0100 | |
|---|---|---|
| committer | 2021-12-03 00:57:32 +0100 | |
| commit | a54aa19dc7f8cd344cdfb199ee94c01e0b90becc (patch) | |
| tree | bcbfa7efbefaa459accf71dafc02f210e965bc28 /app/install.php | |
| parent | 00dbde68fbaf7da68ccf191c33f2de88d3603aa8 (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.php | 8 |
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> |
