diff options
author | Paul Brown <paul90brown@gmail.com> | 2013-04-29 15:44:11 -0500 |
---|---|---|
committer | Paul Brown <paul90brown@gmail.com> | 2013-04-29 15:44:11 -0500 |
commit | 215264706dcdaf50f47cb208da6b7fae6307e512 (patch) | |
tree | 699241f46601e86342bb291747f78cad165272da | |
parent | a5c72f1ad27dad9b9b81e9819b6e72473a72e80d (diff) | |
download | nextcloud-server-215264706dcdaf50f47cb208da6b7fae6307e512.tar.gz nextcloud-server-215264706dcdaf50f47cb208da6b7fae6307e512.zip |
Improve IE Compatibility
Added meta tags from HTML5 Boiler Plate to improve compatibility with IE7+. This fixes the issues with rendering.
-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 4dc4a2c7593..734def5f20c 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -8,7 +8,8 @@ <head> <title><?php p(!empty($_['application'])?$_['application'].' | ':'') ?>ownCloud <?php 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')); ?>" /> |