diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-08-03 18:24:20 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-11-03 14:24:20 +0100 |
commit | 069ed71dbe76cf53d95578d65b7859f371c30582 (patch) | |
tree | 284b91891112252cc78f21ac973e7ffbfca2f45f /core/templates/layout.user.php | |
parent | b0c456c0fcbb4ba911732e2dd014527d8669954d (diff) | |
download | nextcloud-server-069ed71dbe76cf53d95578d65b7859f371c30582.tar.gz nextcloud-server-069ed71dbe76cf53d95578d65b7859f371c30582.zip |
Add favicon for IE 8+
Diffstat (limited to 'core/templates/layout.user.php')
-rw-r--r-- | core/templates/layout.user.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index fcdebc03c97..e784b2f4bcb 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -23,7 +23,7 @@ <meta name="apple-mobile-web-app-title" content="<?php p((!empty($_['application']) && $_['appid']!='files')? $_['application']:'ownCloud'); ?>"> <meta name="mobile-web-app-capable" content="yes"> <meta name="theme-color" content="<?php p($theme->getMailHeaderColor()); ?>"> - <link rel="shortcut icon" type="image/png" href="<?php print_unescaped(image_path($_['appid'], 'favicon.png')); ?>"> + <link rel="shortcut icon" href="<?php print_unescaped(image_path($_['appid'], 'favicon.ico')); /* IE11+ supports 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); ?>" media="screen"> |