diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-05-28 05:18:43 -0700 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-05-28 05:18:43 -0700 |
commit | 1d720099c328fe3084e05fe3d2bdd9e49acb8dfe (patch) | |
tree | 1edf6f399bf59b1f3bb658b378cd289e1ceb5bb2 /core/templates/layout.user.php | |
parent | da55c76168fdaeda75258c817112675fe75f1441 (diff) | |
parent | 215264706dcdaf50f47cb208da6b7fae6307e512 (diff) | |
download | nextcloud-server-1d720099c328fe3084e05fe3d2bdd9e49acb8dfe.tar.gz nextcloud-server-1d720099c328fe3084e05fe3d2bdd9e49acb8dfe.zip |
Merge pull request #3179 from pawl/patch-1
Improve IE Compatibility
Diffstat (limited to 'core/templates/layout.user.php')
-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 6e49149b0ae..a3ebf3abd03 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -8,7 +8,8 @@ <head data-user="<?php p($_['user_uid']); ?>" data-requesttoken="<?php p($_['requesttoken']); ?>"> <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')); ?>" /> |