Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2020-10-04 12:01:22 +0300
committerGitHub <noreply@github.com>2020-10-04 12:01:22 +0300
commit12da69d79d3546348356d4b71d010e206634c582 (patch)
tree2a1366db205fa4cc3322ac1addafffe702c07667 /core
parent1896f374651aef4d3580eaedbb96c6c672d58a6b (diff)
parent8aa13f37b07b41ba1cd216727ed616745a7ec794 (diff)
Merge pull request #23145 from wenz/14818-safarifavicon
Add apple-touch-icon-precomposed (fixes #14818)
Diffstat (limited to 'core')
-rw-r--r--core/templates/layout.public.php1
-rw-r--r--core/templates/layout.user.php1
2 files changed, 2 insertions, 0 deletions
diff --git a/core/templates/layout.public.php b/core/templates/layout.public.php
index fb90de5c8ba..97de7817efd 100644
--- a/core/templates/layout.public.php
+++ b/core/templates/layout.public.php
@@ -20,6 +20,7 @@
<meta name="theme-color" content="<?php p($theme->getColorPrimary()); ?>">
<link rel="icon" href="<?php print_unescaped(image_path($_['appid'], 'favicon.ico')); /* IE11+ supports png */ ?>">
<link rel="apple-touch-icon" href="<?php print_unescaped(image_path($_['appid'], 'favicon-touch.png')); ?>">
+ <link rel="apple-touch-icon-precomposed" href="<?php print_unescaped(image_path($_['appid'], 'favicon-touch.png')); ?>">
<link rel="mask-icon" sizes="any" href="<?php print_unescaped(image_path($_['appid'], 'favicon-mask.svg')); ?>" color="<?php p($theme->getColorPrimary()); ?>">
<link rel="manifest" href="<?php print_unescaped(image_path($_['appid'], 'manifest.json')); ?>">
<?php emit_css_loading_tags($_); ?>
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php
index df539b6cd2e..50c0eb2ef89 100644
--- a/core/templates/layout.user.php
+++ b/core/templates/layout.user.php
@@ -20,6 +20,7 @@
<meta name="theme-color" content="<?php p($theme->getColorPrimary()); ?>">
<link rel="icon" href="<?php print_unescaped(image_path($_['appid'], 'favicon.ico')); /* IE11+ supports png */ ?>">
<link rel="apple-touch-icon" href="<?php print_unescaped(image_path($_['appid'], 'favicon-touch.png')); ?>">
+ <link rel="apple-touch-icon-precomposed" href="<?php print_unescaped(image_path($_['appid'], 'favicon-touch.png')); ?>">
<link rel="mask-icon" sizes="any" href="<?php print_unescaped(image_path($_['appid'], 'favicon-mask.svg')); ?>" color="<?php p($theme->getColorPrimary()); ?>">
<link rel="manifest" href="<?php print_unescaped(image_path($_['appid'], 'manifest.json')); ?>">
<?php emit_css_loading_tags($_); ?>