diff options
author | Volker E <volker.e@temporaer.net> | 2015-03-17 23:57:23 +0100 |
---|---|---|
committer | Volker E <volker.e@temporaer.net> | 2015-03-17 23:57:23 +0100 |
commit | 6ad76b5cc2a31545c7466ec1d6c18ac2bbf0dd09 (patch) | |
tree | 7996d4451c01f8656baa12658ab6a72d167be377 /core/templates/layout.base.php | |
parent | 25b77159c453f72efd1e2c622fc4c4046816ca84 (diff) | |
download | nextcloud-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.base.php')
-rw-r--r-- | core/templates/layout.base.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/templates/layout.base.php b/core/templates/layout.base.php index 743d4dd3d34..af8db009394 100644 --- a/core/templates/layout.base.php +++ b/core/templates/layout.base.php @@ -7,12 +7,12 @@ <title> <?php 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, minimum-scale=1.0, maximum-scale=1.0"> - <link rel="shortcut icon" type="image/png" href="<?php print_unescaped(image_path('', 'favicon.png')); ?>" /> - <link rel="apple-touch-icon-precomposed" href="<?php print_unescaped(image_path('', 'favicon-touch.png')); ?>" /> + <link rel="shortcut icon" type="image/png" href="<?php print_unescaped(image_path('', 'favicon.png')); ?>"> + <link rel="apple-touch-icon-precomposed" href="<?php print_unescaped(image_path('', '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> |