diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2019-02-27 22:11:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-27 22:11:16 +0100 |
commit | 782e80cd75af721240cadd5788b6898aaaffd9d5 (patch) | |
tree | 26bda13374751a6e821e0a87216928968d91c32f /core | |
parent | db4af1d4ff1a298a9790851983be3ac5f445f5ad (diff) | |
parent | dc5eea12875bfb08fb76b28497731fa028e8398a (diff) | |
download | nextcloud-server-782e80cd75af721240cadd5788b6898aaaffd9d5.tar.gz nextcloud-server-782e80cd75af721240cadd5788b6898aaaffd9d5.zip |
Merge pull request #14419 from nextcloud/bugfix/noid/closing-tags
Fix closing tags in header
Diffstat (limited to 'core')
-rw-r--r-- | core/templates/layout.user.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 1f0f2dbbd1e..d1f979c6965 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -58,7 +58,7 @@ <?php if ($_['themingInvertMenu']) { ?> <defs><filter id="invertMenuMain-<?php p($entry['id']); ?>"><feColorMatrix in="SourceGraphic" type="matrix" values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0" /></filter></defs> <?php } ?> - <image x="0" y="0" width="20" height="20" preserveAspectRatio="xMinYMin meet"<?php if ($_['themingInvertMenu']) { ?> filter="url(#invertMenuMain-<?php p($entry['id']); ?>)"<?php } ?> xlink:href="<?php print_unescaped($entry['icon'] . '?v=' . $_['versionHash']); ?>" class="app-icon" /> + <image x="0" y="0" width="20" height="20" preserveAspectRatio="xMinYMin meet"<?php if ($_['themingInvertMenu']) { ?> filter="url(#invertMenuMain-<?php p($entry['id']); ?>)"<?php } ?> xlink:href="<?php print_unescaped($entry['icon'] . '?v=' . $_['versionHash']); ?>" class="app-icon"></image> </svg> <span> <?php p($entry['name']); ?> @@ -147,7 +147,7 @@ </nav> </div> </div> - </div></header> + </header> <div id="sudo-login-background" class="hidden"></div> <form id="sudo-login-form" class="hidden"> |