diff options
author | Joas Schilling <coding@schilljs.com> | 2023-12-11 08:59:45 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2024-01-17 09:25:44 +0100 |
commit | 2fccd090b398d5edfd6772013e48dae90cccae24 (patch) | |
tree | 1ead06bb2be86e1ac9183b1771b16c0c1c2a2754 /core/templates/layout.guest.php | |
parent | ad12af8d06dfffe3e8d6b4a255aa96fc2c719136 (diff) | |
download | nextcloud-server-2fccd090b398d5edfd6772013e48dae90cccae24.tar.gz nextcloud-server-2fccd090b398d5edfd6772013e48dae90cccae24.zip |
fix(manifest): Check if app exists instead of accessing null as an array
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core/templates/layout.guest.php')
-rw-r--r-- | core/templates/layout.guest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php index eed6af129d8..5ebada92934 100644 --- a/core/templates/layout.guest.php +++ b/core/templates/layout.guest.php @@ -20,7 +20,7 @@ p($theme->getTitle()); <link rel="icon" href="<?php print_unescaped(image_path('core', 'favicon.ico')); /* IE11+ supports png */ ?>"> <link rel="apple-touch-icon" href="<?php print_unescaped(image_path('core', 'favicon-touch.png')); ?>"> <link rel="mask-icon" sizes="any" href="<?php print_unescaped(image_path('core', 'favicon-mask.svg')); ?>" color="<?php p($theme->getColorPrimary()); ?>"> - <link rel="manifest" href="<?php print_unescaped(image_path('core', 'manifest.json')); ?>"> + <link rel="manifest" href="<?php print_unescaped(image_path('core', 'manifest.json')); ?>" crossorigin="use-credentials"> <?php emit_css_loading_tags($_); ?> <?php emit_script_loading_tags($_); ?> <?php print_unescaped($_['headers']); ?> |