aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2014-09-11 10:28:52 +0200
committerLukas Reschke <lukas@owncloud.com>2014-09-11 12:39:45 +0200
commitec9517f98b22bcf3d0f79e99b018dca116fff9de (patch)
tree673b953a83f709c8b60a8a7e3397c451794a8cc6
parent36680a5a81bb6074dab2fdd783aaee0ffd000039 (diff)
downloadnextcloud-server-ec9517f98b22bcf3d0f79e99b018dca116fff9de.tar.gz
nextcloud-server-ec9517f98b22bcf3d0f79e99b018dca116fff9de.zip
Add X-UA-Compatible to all templates
Replaces https://github.com/owncloud/core/pull/10850
-rw-r--r--core/templates/layout.base.php1
-rw-r--r--core/templates/layout.guest.php1
-rw-r--r--core/templates/layout.user.php2
3 files changed, 3 insertions, 1 deletions
diff --git a/core/templates/layout.base.php b/core/templates/layout.base.php
index 66abccedd27..7c5a548363d 100644
--- a/core/templates/layout.base.php
+++ b/core/templates/layout.base.php
@@ -11,6 +11,7 @@
<?php p($theme->getTitle()); ?>
</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+ <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" href="<?php print_unescaped(image_path('', 'favicon.png')); ?>" />
<link rel="apple-touch-icon-precomposed" href="<?php print_unescaped(image_path('', 'favicon-touch.png')); ?>" />
diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php
index b802a241eeb..20f65a94c97 100644
--- a/core/templates/layout.guest.php
+++ b/core/templates/layout.guest.php
@@ -11,6 +11,7 @@
<?php p($theme->getTitle()); ?>
</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+ <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">
<meta name="apple-itunes-app" content="app-id=543672169">
<link rel="shortcut icon" href="<?php print_unescaped(image_path('', 'favicon.png')); ?>" />
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php
index c4f6df0c725..f0121c30d6b 100644
--- a/core/templates/layout.user.php
+++ b/core/templates/layout.user.php
@@ -14,7 +14,7 @@
?>
</title>
<meta charset="utf-8">
- <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, initial-scale=1.0, 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')); ?>" />