diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-08-26 17:35:50 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-08-26 17:35:50 +0200 |
commit | 3115053bbb3a1ba5d0bb3562bea6b7ef94a09cd0 (patch) | |
tree | 00f68523b1255aa46e722d1308f61fa6a596b894 /core | |
parent | 910b827b9801d6f8429e01809b821b98216af813 (diff) | |
parent | e0a8321b23155bc894765dade6b3038160ca00f4 (diff) | |
download | nextcloud-server-3115053bbb3a1ba5d0bb3562bea6b7ef94a09cd0.tar.gz nextcloud-server-3115053bbb3a1ba5d0bb3562bea6b7ef94a09cd0.zip |
Merge pull request #10604 from owncloud/fixing-favicon
Adding type to favicon
Diffstat (limited to 'core')
-rw-r--r-- | core/templates/layout.base.php | 2 | ||||
-rw-r--r-- | core/templates/layout.guest.php | 2 | ||||
-rw-r--r-- | core/templates/layout.user.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/core/templates/layout.base.php b/core/templates/layout.base.php index 7895e624507..127e99be84d 100644 --- a/core/templates/layout.base.php +++ b/core/templates/layout.base.php @@ -12,7 +12,7 @@ </title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0"> - <link rel="shortcut icon" href="<?php print_unescaped(image_path('', 'favicon.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" /> diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php index a2d386e86d4..00950802fec 100644 --- a/core/templates/layout.guest.php +++ b/core/templates/layout.guest.php @@ -13,7 +13,7 @@ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0"> <meta name="apple-itunes-app" content="app-id=543672169"> - <link rel="shortcut icon" href="<?php print_unescaped(image_path('', 'favicon.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" /> diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index e91c427d65b..69a181735ca 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -21,7 +21,7 @@ <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" href="<?php print_unescaped(image_path('', 'favicon.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" /> |