summaryrefslogtreecommitdiffstats
path: root/core/templates/layout.user.php
diff options
context:
space:
mode:
authorVolker E <volker.e@temporaer.net>2015-03-17 23:57:23 +0100
committerVolker E <volker.e@temporaer.net>2015-03-17 23:57:23 +0100
commit6ad76b5cc2a31545c7466ec1d6c18ac2bbf0dd09 (patch)
tree7996d4451c01f8656baa12658ab6a72d167be377 /core/templates/layout.user.php
parent25b77159c453f72efd1e2c622fc4c4046816ca84 (diff)
downloadnextcloud-server-6ad76b5cc2a31545c7466ec1d6c18ac2bbf0dd09.tar.gz
nextcloud-server-6ad76b5cc2a31545c7466ec1d6c18ac2bbf0dd09.zip
addressing #14982 self-closing tags ending slash doesn't have a purpose & should be removed
Diffstat (limited to 'core/templates/layout.user.php')
-rw-r--r--core/templates/layout.user.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php
index 9f8daa5cad3..4737c5cabd4 100644
--- a/core/templates/layout.user.php
+++ b/core/templates/layout.user.php
@@ -10,17 +10,17 @@
p($theme->getTitle());
?>
</title>
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta name="apple-itunes-app" content="app-id=<?php p($theme->getiTunesAppId()); ?>">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="<?php p((!empty($_['application']) && $_['appid']!='files')? $_['application']:'ownCloud'); ?>">
<meta name="mobile-web-app-capable" content="yes">
- <link rel="shortcut icon" type="image/png" href="<?php print_unescaped(image_path($_['appid'], 'favicon.png')); ?>" />
- <link rel="apple-touch-icon-precomposed" href="<?php print_unescaped(image_path($_['appid'], 'favicon-touch.png')); ?>" />
+ <link rel="shortcut icon" type="image/png" href="<?php print_unescaped(image_path($_['appid'], 'favicon.png')); ?>">
+ <link rel="apple-touch-icon-precomposed" href="<?php print_unescaped(image_path($_['appid'], 'favicon-touch.png')); ?>">
<?php foreach($_['cssfiles'] as $cssfile): ?>
- <link rel="stylesheet" href="<?php print_unescaped($cssfile); ?>" type="text/css" media="screen" />
+ <link rel="stylesheet" href="<?php print_unescaped($cssfile); ?>" type="text/css" media="screen">
<?php endforeach; ?>
<?php foreach($_['jsfiles'] as $jsfile): ?>
<script type="text/javascript" src="<?php print_unescaped($jsfile); ?>"></script>
@@ -85,7 +85,7 @@
<?php endforeach; ?>
<li>
<a id="logout" <?php print_unescaped(OC_User::getLogoutAttribute()); ?>>
- <img class="svg" alt="" src="<?php print_unescaped(image_path('', 'actions/logout.svg')); ?>" />
+ <img class="svg" alt="" src="<?php print_unescaped(image_path('', 'actions/logout.svg')); ?>">
<?php p($l->t('Log out'));?>
</a>
</li>