diff options
| author | 2021-12-03 00:57:32 +0100 | |
|---|---|---|
| committer | 2021-12-03 00:57:32 +0100 | |
| commit | a54aa19dc7f8cd344cdfb199ee94c01e0b90becc (patch) | |
| tree | bcbfa7efbefaa459accf71dafc02f210e965bc28 /app/views/user/details.phtml | |
| 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/views/user/details.phtml')
| -rw-r--r-- | app/views/user/details.phtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/user/details.phtml b/app/views/user/details.phtml index e6271704c..6de1a6097 100644 --- a/app/views/user/details.phtml +++ b/app/views/user/details.phtml @@ -4,7 +4,7 @@ <?php $isAdmin = $this->details['is_admin']; ?> <?php $enabled = $this->details['enabled']; ?> -<div class="post"> +<main class="post"> <a href="<?= _url('user', 'manage'); ?>"><?= _t('admin.user.back_to_manage'); ?></a> <h1><?= $this->username ?><?php if ($isAdmin) echo ' ― ', _t('admin.user.admin'); ?></h1> @@ -84,4 +84,4 @@ <div> </div> </form> -</div> +</main> |
