diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-09-11 11:50:36 +0200 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-09-11 11:50:36 +0200 |
commit | 38258fe24686ca6cf8aa89d98521b848d22b6422 (patch) | |
tree | 151204d6a4dcd896f2fb1bc4b8d435a82fb7f3e9 /core | |
parent | 51b53abf9f3b58ea025198ec8cc3a7c2157634f0 (diff) | |
download | nextcloud-server-38258fe24686ca6cf8aa89d98521b848d22b6422.tar.gz nextcloud-server-38258fe24686ca6cf8aa89d98521b848d22b6422.zip |
Improve IE Compatibility
Added meta tags from HTML5 Boiler Plate to improve compatibility with IE7+. This fixes the issues with rendering.
Diffstat (limited to 'core')
-rw-r--r-- | core/templates/layout.user.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 234037b543e..af3d4a71d26 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -14,7 +14,8 @@ p($defaults->getName()); p(trim($_['user_displayname']) != '' ?' ('.$_['user_displayname'].') ':'') ?> </title> - <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <meta charset="utf-8"> + <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="apple-itunes-app" content="app-id=543672169"> <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')); ?>" /> |