diff options
author | Marc Alexander <admin@m-a-styles.de> | 2016-03-24 16:07:07 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2016-03-24 16:07:07 +0100 |
commit | 244d171cb035f0229ad2a06d01062ca809a72025 (patch) | |
tree | 48b2e704efc4de6c0e7e67b30aab0f370c7eef0d /phpBB/install | |
parent | a4fac6da2afc64790ada467c9882a31871d14aa8 (diff) | |
download | forums-244d171cb035f0229ad2a06d01062ca809a72025.tar forums-244d171cb035f0229ad2a06d01062ca809a72025.tar.gz forums-244d171cb035f0229ad2a06d01062ca809a72025.tar.bz2 forums-244d171cb035f0229ad2a06d01062ca809a72025.tar.xz forums-244d171cb035f0229ad2a06d01062ca809a72025.zip |
[ticket/14136] Add back X-UA-Compatible meta tag
This was previously removed without needing to. Adding it back to force
users to not emulate the page for previous versions of IE. The
imagetoolbar http-equiv tag was not restored as IE does not contain that
anymore since IE7. Also, the chome=1 has been removed from the
X-UA-Compatible content as ChromeFrame does not receive any further
updates since 2014 and is potentially broken.
PHPBB3-14136
Diffstat (limited to 'phpBB/install')
-rw-r--r-- | phpBB/install/database_update.php | 1 | ||||
-rw-r--r-- | phpBB/install/index.php | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 80fd40a944..42cc27e60b 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -138,6 +138,7 @@ header('Content-type: text/html; charset=UTF-8'); <html dir="<?php echo $user->lang['DIRECTION']; ?>" lang="<?php echo $user->lang['USER_LANG']; ?>"> <head> <meta charset="utf-8"> +<meta http-equiv="X-UA-Compatible" content="IE=edge"> <title><?php echo $user->lang['UPDATING_TO_LATEST_STABLE']; ?></title> diff --git a/phpBB/install/index.php b/phpBB/install/index.php index 5c16421499..b5d14f27cf 100644 --- a/phpBB/install/index.php +++ b/phpBB/install/index.php @@ -633,6 +633,7 @@ class module echo '<html dir="ltr">'; echo '<head>'; echo '<meta charset="utf-8">'; + echo '<meta http-equiv="X-UA-Compatible" content="IE=edge">'; echo '<title>' . $lang['INST_ERR_FATAL'] . '</title>'; echo '<link href="' . htmlspecialchars($phpbb_admin_path) . 'style/admin.css" rel="stylesheet" type="text/css" media="screen" />'; echo '</head>'; |